Skip to content

Commit 0625233

Browse files
committed
ci: use bash to call source/make
Signed-off-by: Vitor Bandeira <[email protected]>
1 parent 803c09f commit 0625233

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

jenkins/public_nightly.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ pipeline {
127127
}
128128
}
129129
sh "docker run --rm openroad/flow-centos7-builder:latest tools/install/OpenROAD/bin/openroad -help -exit";
130-
sh "docker run --rm openroad/flow-centos7-builder:latest 'source ./env.sh ; make -C flow'";
130+
sh "docker run --rm openroad/flow-centos7-builder:latest bash -c 'source ./env.sh ; make -C flow'";
131131
} else {
132132
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
133133
}

jenkins/public_tests_all.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ pipeline {
102102
}
103103
}
104104
sh "docker run --rm openroad/flow-centos7-builder:latest tools/install/OpenROAD/bin/openroad -help -exit";
105-
sh "docker run --rm openroad/flow-centos7-builder:latest 'source ./env.sh ; make -C flow'";
105+
sh "docker run --rm openroad/flow-centos7-builder:latest bash -c 'source ./env.sh ; make -C flow'";
106106
} else {
107107
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
108108
}

jenkins/public_tests_small.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ pipeline {
102102
}
103103
}
104104
sh "docker run --rm openroad/flow-centos7-builder:latest tools/install/OpenROAD/bin/openroad -help -exit";
105-
sh "docker run --rm openroad/flow-centos7-builder:latest 'source ./env.sh ; make -C flow'";
105+
sh "docker run --rm openroad/flow-centos7-builder:latest bash -c 'source ./env.sh ; make -C flow'";
106106
} else {
107107
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
108108
}

0 commit comments

Comments
 (0)