Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix benchmark problem #3762

Merged
merged 15 commits into from
Mar 8, 2022
Merged
Prev Previous commit
Next Next commit
fix wrong fix
  • Loading branch information
VoVAllen committed Mar 8, 2022
commit 0cf1c2fb05bd682b99be12be498c1da215c0f7ad
16 changes: 8 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,10 @@ pipeline {
stages {
stage('Regression Test Trigger') {
agent {
kubernetes {
yamlFile 'docker/pods/ci-lint.yaml'
defaultContainer 'dgl-ci-lint'
docker {
label 'linux-benchmark-node'
image 'dgllib/dgl-ci-lint'
alwaysPull true
}
}
when { triggeredBy 'IssueCommentCause' }
Expand Down Expand Up @@ -173,11 +174,10 @@ pipeline {
stages {
stage('Lint Check') {
agent {
docker {
label 'linux-benchmark-node'
image 'dgllib/dgl-ci-lint'
alwaysPull true
}
kubernetes {
yamlFile 'docker/pods/ci-lint.yaml'
defaultContainer 'dgl-ci-lint'
}
}
steps {
init_git()
Expand Down