Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.sh",
label: "Run Python frontend tests",
)
junit "build/pytest-results/*.xml"
Expand Down