Unverified Commit 3075b277 authored by Jinjing Zhou's avatar Jinjing Zhou Committed by GitHub
Browse files

[CI] Fix regression trigger (#2862)

* fix

* fix

* debug

* fix

* fix

* fix

* fix

* ci

* fix

* fix
parent ebc6a85a
#!/usr/bin/env groovy
dgl_linux_libs = "build/libdgl.so, build/runUnitTests, python/dgl/_ffi/_cy3/core.cpython-36m-x86_64-linux-gnu.so, build/tensoradapter/pytorch/*.so"
dgl_linux_libs = 'build/libdgl.so, build/runUnitTests, python/dgl/_ffi/_cy3/core.cpython-36m-x86_64-linux-gnu.so, build/tensoradapter/pytorch/*.so'
// Currently DGL on Windows is not working with Cython yet
dgl_win64_libs = "build\\dgl.dll, build\\runUnitTests.exe, build\\tensoradapter\\pytorch\\*.dll"
def init_git() {
sh "rm -rf *"
sh 'rm -rf *'
checkout scm
sh "git submodule update --recursive --init"
sh 'git submodule update --recursive --init'
}
def init_git_win64() {
checkout scm
bat "git submodule update --recursive --init"
bat 'git submodule update --recursive --init'
}
// pack libraries for later use
......@@ -30,7 +30,7 @@ def unpack_lib(name, libs) {
def build_dgl_linux(dev) {
init_git()
sh "bash tests/scripts/build_dgl.sh ${dev}"
sh "ls -lh /usr/lib/x86_64-linux-gnu/"
sh 'ls -lh /usr/lib/x86_64-linux-gnu/'
pack_lib("dgl-${dev}-linux", dgl_linux_libs)
}
......@@ -44,13 +44,13 @@ def build_dgl_win64(dev) {
def cpp_unit_test_linux() {
init_git()
unpack_lib("dgl-cpu-linux", dgl_linux_libs)
sh "bash tests/scripts/task_cpp_unit_test.sh"
unpack_lib('dgl-cpu-linux', dgl_linux_libs)
sh 'bash tests/scripts/task_cpp_unit_test.sh'
}
def cpp_unit_test_win64() {
init_git_win64()
unpack_lib("dgl-cpu-win64", dgl_win64_libs)
unpack_lib('dgl-cpu-win64', dgl_win64_libs)
bat "CALL tests\\scripts\\task_cpp_unit_test.bat"
}
......@@ -88,100 +88,97 @@ def example_test_win64(backend, dev) {
def tutorial_test_linux(backend) {
init_git()
unpack_lib("dgl-cpu-linux", dgl_linux_libs)
unpack_lib('dgl-cpu-linux', dgl_linux_libs)
timeout(time: 20, unit: 'MINUTES') {
sh "bash tests/scripts/task_${backend}_tutorial_test.sh"
}
}
def is_authorized(name) {
def authorized_user = ['VoVAllen', 'BarclayII', 'jermainewang', 'zheng-da', 'mufeili']
return (name in authorized_user)
}
pipeline {
triggers {
issueCommentTrigger('@dgl-bot .*')
}
agent any
stages {
stage("Lint Check") {
agent {
docker {
label "linux-c52x-node"
image "dgllib/dgl-ci-lint"
alwaysPull true
}
stage('Regression Test Trigger') {
agent {
docker {
label 'linux-benchmark-node'
image 'dgllib/dgl-ci-lint'
alwaysPull true
}
}
when { triggeredBy 'IssueCommentCause' }
steps {
init_git()
sh "bash tests/scripts/task_lint.sh"
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
checkout scm
script {
def comment = env.GITHUB_COMMENT
def author = env.GITHUB_COMMENT_AUTHOR
if (!is_authorized(author)) {
error('Not authorized to launch regression tests')
}
dir('benchmark_scripts_repo') {
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
userRemoteConfigs: [[credentialsId: 'github', url: 'https://github.com/dglai/DGL_scripts.git']]])
}
sh('cp benchmark_scripts_repo/benchmark/* benchmarks/scripts/')
def command_lists = comment.split(' ')
def instance_type = command_lists[2].replace('.', '')
if (command_lists.size() != 5) {
pullRequest.comment('Cannot run the regression test due to unknown command')
error('Unknown command')
} else {
pullRequest.comment("Start the Regression test. View at ${RUN_DISPLAY_URL}")
}
dir('benchmarks/scripts') {
sh('python3 -m pip install boto3')
sh("PYTHONUNBUFFERED=1 GIT_URL=${env.GIT_URL} GIT_BRANCH=${env.CHANGE_BRANCH} python3 run_reg_test.py --data-folder ${env.GIT_COMMIT}_${instance_type} --run-cmd '${comment}'")
}
pullRequest.comment("Finished the Regression test. Result table is at https://dgl-asv-data.s3-us-west-2.amazonaws.com/${env.GIT_COMMIT}_${instance_type}/results/result.csv. Jenkins job link is ${RUN_DISPLAY_URL}. ")
currentBuild.result = 'SUCCESS'
return
}
}
}
stage("Build") {
parallel {
stage("CPU Build") {
agent {
docker {
label "linux-c52x-node"
image "dgllib/dgl-ci-cpu:conda"
alwaysPull true
}
}
steps {
build_dgl_linux("cpu")
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("GPU Build") {
agent {
docker {
label "linux-c52x-node"
image "dgllib/dgl-ci-gpu:conda"
args "-u root"
alwaysPull true
}
}
steps {
// sh "nvidia-smi"
build_dgl_linux("gpu")
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
stage('Bot Instruction') {
agent {
docker {
label 'linux-benchmark-node'
image 'dgllib/dgl-ci-lint'
alwaysPull true
}
stage("CPU Build (Win64)") {
// Windows build machines are manually added to Jenkins master with
// "windows" label as permanent agents.
agent { label "windows" }
steps {
build_dgl_win64("cpu")
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
steps {
script {
def prOpenTriggerCause = currentBuild.getBuildCauses('jenkins.branch.BranchEventCause')
if (prOpenTriggerCause) {
if (env.BUILD_ID == '1') {
pullRequest.comment('To trigger regression tests: \n - `@dgl-bot run [instance-type] [which tests] [compare-with-branch]`; \n For example: `@dgl-bot run g4dn.4xlarge all dmlc/master` or `@dgl-bot run c5.9xlarge kernel,api dmlc/master`')
}
}
echo('Not the first build')
}
// Currently we don't have Windows GPU build machines
}
}
stage("Test") {
parallel {
stage("C++ CPU") {
agent {
docker {
label "linux-c52x-node"
image "dgllib/dgl-ci-cpu:conda"
stage('CI'){
when { not {triggeredBy 'IssueCommentCause'} }
stages{
stage('Lint Check') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-lint'
alwaysPull true
}
}
steps {
cpp_unit_test_linux()
init_git()
sh 'bash tests/scripts/task_lint.sh'
}
post {
always {
......@@ -189,185 +186,260 @@ pipeline {
}
}
}
stage("C++ CPU (Win64)") {
agent { label "windows" }
steps {
cpp_unit_test_win64()
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Tensorflow CPU") {
agent {
docker {
label "linux-c52x-node"
image "dgllib/dgl-ci-cpu:conda"
alwaysPull true
}
}
stages {
stage("Unit test") {
steps {
unit_test_linux("tensorflow", "cpu")
stage('Build') {
parallel {
stage('CPU Build') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true
}
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Tensorflow GPU") {
agent {
docker {
label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:conda"
args "--runtime nvidia"
alwaysPull true
}
}
stages {
stage("Unit test") {
steps {
unit_test_linux("tensorflow", "gpu")
build_dgl_linux('cpu')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Torch CPU") {
agent {
docker {
label "linux-c52x-node"
image "dgllib/dgl-ci-cpu:conda"
alwaysPull true
}
}
stages {
stage("Unit test") {
steps {
unit_test_linux("pytorch", "cpu")
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Example test") {
steps {
example_test_linux("pytorch", "cpu")
stage('GPU Build') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-gpu:conda'
args '-u root'
alwaysPull true
}
}
}
stage("Tutorial test") {
steps {
tutorial_test_linux("pytorch")
// sh "nvidia-smi"
build_dgl_linux('gpu')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Torch CPU (Win64)") {
agent { label "windows" }
stages {
stage("Unit test") {
steps {
unit_test_win64("pytorch", "cpu")
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Example test") {
stage('CPU Build (Win64)') {
// Windows build machines are manually added to Jenkins master with
// "windows" label as permanent agents.
agent { label 'windows' }
steps {
example_test_win64("pytorch", "cpu")
build_dgl_win64('cpu')
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
// Currently we don't have Windows GPU build machines
}
}
stage("Torch GPU") {
agent {
docker {
label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:conda"
args "--runtime nvidia"
alwaysPull true
}
}
stages {
stage("Unit test") {
stage('Test') {
parallel {
stage('C++ CPU') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true
}
}
steps {
sh "nvidia-smi"
unit_test_linux("pytorch", "gpu")
cpp_unit_test_linux()
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Example test") {
stage('C++ CPU (Win64)') {
agent { label 'windows' }
steps {
example_test_linux("pytorch", "gpu")
cpp_unit_test_win64()
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
stage('Tensorflow CPU') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true
}
}
stages {
stage('Unit test') {
steps {
unit_test_linux('tensorflow', 'cpu')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
}
stage("MXNet CPU") {
agent {
docker {
label "linux-c52x-node"
image "dgllib/dgl-ci-cpu:conda"
alwaysPull true
stage('Tensorflow GPU') {
agent {
docker {
label 'linux-gpu-node'
image 'dgllib/dgl-ci-gpu:conda'
args '--runtime nvidia'
alwaysPull true
}
}
stages {
stage('Unit test') {
steps {
unit_test_linux('tensorflow', 'gpu')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
stages {
stage("Unit test") {
steps {
unit_test_linux("mxnet", "cpu")
stage('Torch CPU') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true
}
}
stages {
stage('Unit test') {
steps {
unit_test_linux('pytorch', 'cpu')
}
}
stage('Example test') {
steps {
example_test_linux('pytorch', 'cpu')
}
}
stage('Tutorial test') {
steps {
tutorial_test_linux('pytorch')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
//stage("Tutorial test") {
// steps {
// tutorial_test_linux("mxnet")
// }
//}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
stage('Torch CPU (Win64)') {
agent { label 'windows' }
stages {
stage('Unit test') {
steps {
unit_test_win64('pytorch', 'cpu')
}
}
stage('Example test') {
steps {
example_test_win64('pytorch', 'cpu')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
}
stage("MXNet GPU") {
agent {
docker {
label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:conda"
args "--runtime nvidia"
alwaysPull true
stage('Torch GPU') {
agent {
docker {
label 'linux-gpu-node'
image 'dgllib/dgl-ci-gpu:conda'
args '--runtime nvidia'
alwaysPull true
}
}
stages {
stage('Unit test') {
steps {
sh 'nvidia-smi'
unit_test_linux('pytorch', 'gpu')
}
}
stage('Example test') {
steps {
example_test_linux('pytorch', 'gpu')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
stages {
stage("Unit test") {
steps {
sh "nvidia-smi"
unit_test_linux("mxnet", "gpu")
stage('MXNet CPU') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true
}
}
stages {
stage('Unit test') {
steps {
unit_test_linux('mxnet', 'cpu')
}
}
//stage("Tutorial test") {
// steps {
// tutorial_test_linux("mxnet")
// }
//}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
stage('MXNet GPU') {
agent {
docker {
label 'linux-gpu-node'
image 'dgllib/dgl-ci-gpu:conda'
args '--runtime nvidia'
alwaysPull true
}
}
stages {
stage('Unit test') {
steps {
sh 'nvidia-smi'
unit_test_linux('mxnet', 'gpu')
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment