Skip to content

Commit ac14aab

Browse files
committed
ci: add smoke test for runtime dependencies
Signed-off-by: Vitor Bandeira <[email protected]>
1 parent 1faa598 commit ac14aab

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

jenkins/public_nightly.Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ pipeline {
101101
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
102102
if ("${TEST_SLUG}" == 'docker build'){
103103
sh "./build_openroad.sh --no_init";
104+
sh "docker run --rm openroad/flow-scripts:latest tools/install/OpenROAD/bin/openroad -help -exit";
104105
} else {
105106
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
106107
}

jenkins/public_tests_all.Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ pipeline {
7979
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
8080
if ("${TEST_SLUG}" == 'docker build'){
8181
sh "./build_openroad.sh";
82+
sh "docker run --rm openroad/flow-scripts:latest tools/install/OpenROAD/bin/openroad -help -exit";
8283
} else {
8384
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
8485
}

jenkins/public_tests_small.Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ pipeline {
7777
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
7878
if ("${TEST_SLUG}" == 'docker build'){
7979
sh "./build_openroad.sh";
80+
sh "docker run --rm openroad/flow-scripts:latest tools/install/OpenROAD/bin/openroad -help -exit";
8081
} else {
8182
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
8283
}

0 commit comments

Comments
 (0)