Skip to content

Commit a6a728c

Browse files
authored
Merge pull request #1763 from vvbandeira/gha-update
ci: source env.sh in CI
2 parents e0b6a9d + 0625233 commit a6a728c

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.github/workflows/github-actions-cron-test-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
./etc/DockerHelper.sh create -target=builder -os=${{ matrix.os }}
5252
- name: Test build
5353
run: |
54-
cmd="yosys -help; openroad -help; make -C flow;"
54+
cmd="source ./env.sh ; yosys -help ; openroad -help ; make -C flow ;"
5555
if [[ ${{ matrix.os }} == "centos7" ]]; then
5656
cmd="source /opt/rh/devtoolset-8/enable; ${cmd}"
5757
cmd="source /opt/rh/llvm-toolset-7.0/enable; ${cmd}"

jenkins/public_nightly.Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +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 bash -c 'source ./env.sh ; make -C flow'";
130131
} else {
131132
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
132133
}

jenkins/public_tests_all.Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +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 bash -c 'source ./env.sh ; make -C flow'";
105106
} else {
106107
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
107108
}

jenkins/public_tests_small.Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +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 bash -c 'source ./env.sh ; make -C flow'";
105106
} else {
106107
sh 'nice flow/test/test_helper.sh ${TEST_SLUG}';
107108
}

0 commit comments

Comments
 (0)