Skip to content

Commit e1e016f

Browse files
authored
Merge pull request The-OpenROAD-Project#2659 from vvbandeira/at-ci-optional
ci: enable AutoTuner CI
2 parents 227d694 + cb6e121 commit e1e016f

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

flow/test/test_helper.sh

+19-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,25 @@ if [ $ret -eq 0 ] && grep -q 'power:' <(echo $TARGETS); then
7777
ret=$(( ret + $? ))
7878
fi
7979

80-
if [[ -n "${RUN_AUTOTUNER+x}" ]] && [[ ${RUN_AUTOTUNER} -eq 1 ]]; then
80+
# Run Autotuner CI specifically for gcd on selected platforms.
81+
if [ -z "${RUN_AUTOTUNER+x}" ]; then
82+
RUN_AUTOTUNER=0
83+
fi
84+
case $DESIGN_NAME in
85+
"gcd")
86+
RUN_AUTOTUNER=1
87+
;;
88+
esac
89+
case $PLATFORM in
90+
"asap7" | "sky130hd" | "ihp-sg13g2" )
91+
# Keep RUN_AUTOTUNER enabled only for these platforms
92+
;;
93+
*)
94+
RUN_AUTOTUNER=0
95+
;;
96+
esac
97+
98+
if [ $RUN_AUTOTUNER -eq 1 ]; then
8199
# run the commands in ORFS root dir
82100
echo "[INFO FLW-0029] Installing dependencies in virtual environment."
83101
cd ../

jenkins/public_nightly.Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('[email protected].2') _
1+
@Library('[email protected].3') _
22

33
node {
44

jenkins/public_tests_all.Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('[email protected].2') _
1+
@Library('[email protected].3') _
22

33
node {
44

0 commit comments

Comments
 (0)