Skip to content

Commit

Permalink
Hotfix Jenkinsfile (#9592)
Browse files Browse the repository at this point in the history
* [CI] Use correct variable for image name in Jenkinsfile

* Hotfix jenkins

* Update Jenkinsfile

Co-authored-by: Chris Sidebottom <chris.sidebottom@arm.com>
  • Loading branch information
tqchen and Mousius authored Nov 26, 2021
1 parent adf560e commit 976e3a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def cmake_build(image, path, make_flag) {

def cpp_unittest(image) {
sh (
script: "${docker_run} ${docker_type} ./tests/scripts/task_cpp_unittest.sh",
script: "${docker_run} ${image} ./tests/scripts/task_cpp_unittest.sh",
label: "Build and run C++ tests",
)
}
Expand Down Expand Up @@ -531,7 +531,7 @@ stage('Integration Test') {
timeout(time: max_time, unit: 'MINUTES') {
ci_setup(ci_cpu)
sh (
script: "${docker_run} ${ci_gpu} ./tests/scripts/task_python_frontend.sh",
script: "${docker_run} ${ci_cpu} ./tests/scripts/task_python_frontend_cpu.sh",
label: "Run Python frontend tests",
)
junit "build/pytest-results/*.xml"
Expand Down

0 comments on commit 976e3a3

Please sign in to comment.