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 #!/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 // Currently DGL on Windows is not working with Cython yet
dgl_win64_libs = "build\\dgl.dll, build\\runUnitTests.exe, build\\tensoradapter\\pytorch\\*.dll" dgl_win64_libs = "build\\dgl.dll, build\\runUnitTests.exe, build\\tensoradapter\\pytorch\\*.dll"
def init_git() { def init_git() {
sh "rm -rf *" sh 'rm -rf *'
checkout scm checkout scm
sh "git submodule update --recursive --init" sh 'git submodule update --recursive --init'
} }
def init_git_win64() { def init_git_win64() {
checkout scm checkout scm
bat "git submodule update --recursive --init" bat 'git submodule update --recursive --init'
} }
// pack libraries for later use // pack libraries for later use
...@@ -30,7 +30,7 @@ def unpack_lib(name, libs) { ...@@ -30,7 +30,7 @@ def unpack_lib(name, libs) {
def build_dgl_linux(dev) { def build_dgl_linux(dev) {
init_git() init_git()
sh "bash tests/scripts/build_dgl.sh ${dev}" 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) pack_lib("dgl-${dev}-linux", dgl_linux_libs)
} }
...@@ -44,13 +44,13 @@ def build_dgl_win64(dev) { ...@@ -44,13 +44,13 @@ def build_dgl_win64(dev) {
def cpp_unit_test_linux() { def cpp_unit_test_linux() {
init_git() init_git()
unpack_lib("dgl-cpu-linux", dgl_linux_libs) unpack_lib('dgl-cpu-linux', dgl_linux_libs)
sh "bash tests/scripts/task_cpp_unit_test.sh" sh 'bash tests/scripts/task_cpp_unit_test.sh'
} }
def cpp_unit_test_win64() { def cpp_unit_test_win64() {
init_git_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" bat "CALL tests\\scripts\\task_cpp_unit_test.bat"
} }
...@@ -88,27 +88,97 @@ def example_test_win64(backend, dev) { ...@@ -88,27 +88,97 @@ def example_test_win64(backend, dev) {
def tutorial_test_linux(backend) { def tutorial_test_linux(backend) {
init_git() init_git()
unpack_lib("dgl-cpu-linux", dgl_linux_libs) unpack_lib('dgl-cpu-linux', dgl_linux_libs)
timeout(time: 20, unit: 'MINUTES') { timeout(time: 20, unit: 'MINUTES') {
sh "bash tests/scripts/task_${backend}_tutorial_test.sh" 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 { pipeline {
triggers {
issueCommentTrigger('@dgl-bot .*')
}
agent any agent any
stages { stages {
stage("Lint Check") { stage('Regression Test Trigger') {
agent { agent {
docker { docker {
label "linux-c52x-node" label 'linux-benchmark-node'
image "dgllib/dgl-ci-lint" image 'dgllib/dgl-ci-lint'
alwaysPull true
}
}
when { triggeredBy 'IssueCommentCause' }
steps {
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('Bot Instruction') {
agent {
docker {
label 'linux-benchmark-node'
image 'dgllib/dgl-ci-lint'
alwaysPull 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')
}
}
}
stage('CI'){
when { not {triggeredBy 'IssueCommentCause'} }
stages{
stage('Lint Check') {
agent {
docker {
label 'linux-c52x-node'
image 'dgllib/dgl-ci-lint'
alwaysPull true alwaysPull true
} }
} }
steps { steps {
init_git() init_git()
sh "bash tests/scripts/task_lint.sh" sh 'bash tests/scripts/task_lint.sh'
} }
post { post {
always { always {
...@@ -116,18 +186,18 @@ pipeline { ...@@ -116,18 +186,18 @@ pipeline {
} }
} }
} }
stage("Build") { stage('Build') {
parallel { parallel {
stage("CPU Build") { stage('CPU Build') {
agent { agent {
docker { docker {
label "linux-c52x-node" label 'linux-c52x-node'
image "dgllib/dgl-ci-cpu:conda" image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true alwaysPull true
} }
} }
steps { steps {
build_dgl_linux("cpu") build_dgl_linux('cpu')
} }
post { post {
always { always {
...@@ -135,18 +205,18 @@ pipeline { ...@@ -135,18 +205,18 @@ pipeline {
} }
} }
} }
stage("GPU Build") { stage('GPU Build') {
agent { agent {
docker { docker {
label "linux-c52x-node" label 'linux-c52x-node'
image "dgllib/dgl-ci-gpu:conda" image 'dgllib/dgl-ci-gpu:conda'
args "-u root" args '-u root'
alwaysPull true alwaysPull true
} }
} }
steps { steps {
// sh "nvidia-smi" // sh "nvidia-smi"
build_dgl_linux("gpu") build_dgl_linux('gpu')
} }
post { post {
always { always {
...@@ -154,12 +224,12 @@ pipeline { ...@@ -154,12 +224,12 @@ pipeline {
} }
} }
} }
stage("CPU Build (Win64)") { stage('CPU Build (Win64)') {
// Windows build machines are manually added to Jenkins master with // Windows build machines are manually added to Jenkins master with
// "windows" label as permanent agents. // "windows" label as permanent agents.
agent { label "windows" } agent { label 'windows' }
steps { steps {
build_dgl_win64("cpu") build_dgl_win64('cpu')
} }
post { post {
always { always {
...@@ -170,13 +240,13 @@ pipeline { ...@@ -170,13 +240,13 @@ pipeline {
// Currently we don't have Windows GPU build machines // Currently we don't have Windows GPU build machines
} }
} }
stage("Test") { stage('Test') {
parallel { parallel {
stage("C++ CPU") { stage('C++ CPU') {
agent { agent {
docker { docker {
label "linux-c52x-node" label 'linux-c52x-node'
image "dgllib/dgl-ci-cpu:conda" image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true alwaysPull true
} }
} }
...@@ -189,8 +259,8 @@ pipeline { ...@@ -189,8 +259,8 @@ pipeline {
} }
} }
} }
stage("C++ CPU (Win64)") { stage('C++ CPU (Win64)') {
agent { label "windows" } agent { label 'windows' }
steps { steps {
cpp_unit_test_win64() cpp_unit_test_win64()
} }
...@@ -200,18 +270,18 @@ pipeline { ...@@ -200,18 +270,18 @@ pipeline {
} }
} }
} }
stage("Tensorflow CPU") { stage('Tensorflow CPU') {
agent { agent {
docker { docker {
label "linux-c52x-node" label 'linux-c52x-node'
image "dgllib/dgl-ci-cpu:conda" image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true alwaysPull true
} }
} }
stages { stages {
stage("Unit test") { stage('Unit test') {
steps { steps {
unit_test_linux("tensorflow", "cpu") unit_test_linux('tensorflow', 'cpu')
} }
} }
} }
...@@ -221,19 +291,19 @@ pipeline { ...@@ -221,19 +291,19 @@ pipeline {
} }
} }
} }
stage("Tensorflow GPU") { stage('Tensorflow GPU') {
agent { agent {
docker { docker {
label "linux-gpu-node" label 'linux-gpu-node'
image "dgllib/dgl-ci-gpu:conda" image 'dgllib/dgl-ci-gpu:conda'
args "--runtime nvidia" args '--runtime nvidia'
alwaysPull true alwaysPull true
} }
} }
stages { stages {
stage("Unit test") { stage('Unit test') {
steps { steps {
unit_test_linux("tensorflow", "gpu") unit_test_linux('tensorflow', 'gpu')
} }
} }
} }
...@@ -243,28 +313,28 @@ pipeline { ...@@ -243,28 +313,28 @@ pipeline {
} }
} }
} }
stage("Torch CPU") { stage('Torch CPU') {
agent { agent {
docker { docker {
label "linux-c52x-node" label 'linux-c52x-node'
image "dgllib/dgl-ci-cpu:conda" image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true alwaysPull true
} }
} }
stages { stages {
stage("Unit test") { stage('Unit test') {
steps { steps {
unit_test_linux("pytorch", "cpu") unit_test_linux('pytorch', 'cpu')
} }
} }
stage("Example test") { stage('Example test') {
steps { steps {
example_test_linux("pytorch", "cpu") example_test_linux('pytorch', 'cpu')
} }
} }
stage("Tutorial test") { stage('Tutorial test') {
steps { steps {
tutorial_test_linux("pytorch") tutorial_test_linux('pytorch')
} }
} }
} }
...@@ -274,17 +344,17 @@ pipeline { ...@@ -274,17 +344,17 @@ pipeline {
} }
} }
} }
stage("Torch CPU (Win64)") { stage('Torch CPU (Win64)') {
agent { label "windows" } agent { label 'windows' }
stages { stages {
stage("Unit test") { stage('Unit test') {
steps { steps {
unit_test_win64("pytorch", "cpu") unit_test_win64('pytorch', 'cpu')
} }
} }
stage("Example test") { stage('Example test') {
steps { steps {
example_test_win64("pytorch", "cpu") example_test_win64('pytorch', 'cpu')
} }
} }
} }
...@@ -294,25 +364,25 @@ pipeline { ...@@ -294,25 +364,25 @@ pipeline {
} }
} }
} }
stage("Torch GPU") { stage('Torch GPU') {
agent { agent {
docker { docker {
label "linux-gpu-node" label 'linux-gpu-node'
image "dgllib/dgl-ci-gpu:conda" image 'dgllib/dgl-ci-gpu:conda'
args "--runtime nvidia" args '--runtime nvidia'
alwaysPull true alwaysPull true
} }
} }
stages { stages {
stage("Unit test") { stage('Unit test') {
steps { steps {
sh "nvidia-smi" sh 'nvidia-smi'
unit_test_linux("pytorch", "gpu") unit_test_linux('pytorch', 'gpu')
} }
} }
stage("Example test") { stage('Example test') {
steps { steps {
example_test_linux("pytorch", "gpu") example_test_linux('pytorch', 'gpu')
} }
} }
} }
...@@ -322,18 +392,18 @@ pipeline { ...@@ -322,18 +392,18 @@ pipeline {
} }
} }
} }
stage("MXNet CPU") { stage('MXNet CPU') {
agent { agent {
docker { docker {
label "linux-c52x-node" label 'linux-c52x-node'
image "dgllib/dgl-ci-cpu:conda" image 'dgllib/dgl-ci-cpu:conda'
alwaysPull true alwaysPull true
} }
} }
stages { stages {
stage("Unit test") { stage('Unit test') {
steps { steps {
unit_test_linux("mxnet", "cpu") unit_test_linux('mxnet', 'cpu')
} }
} }
//stage("Tutorial test") { //stage("Tutorial test") {
...@@ -348,20 +418,20 @@ pipeline { ...@@ -348,20 +418,20 @@ pipeline {
} }
} }
} }
stage("MXNet GPU") { stage('MXNet GPU') {
agent { agent {
docker { docker {
label "linux-gpu-node" label 'linux-gpu-node'
image "dgllib/dgl-ci-gpu:conda" image 'dgllib/dgl-ci-gpu:conda'
args "--runtime nvidia" args '--runtime nvidia'
alwaysPull true alwaysPull true
} }
} }
stages { stages {
stage("Unit test") { stage('Unit test') {
steps { steps {
sh "nvidia-smi" sh 'nvidia-smi'
unit_test_linux("mxnet", "gpu") unit_test_linux('mxnet', 'gpu')
} }
} }
} }
...@@ -374,6 +444,8 @@ pipeline { ...@@ -374,6 +444,8 @@ pipeline {
} }
} }
} }
}
}
post { post {
always { always {
node('windows') { node('windows') {
......
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