Skip to content

Commit afe6662

Browse files
committed
Perform full submod init for CI
1 parent e45e0c8 commit afe6662

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/run-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
run: |
2121
conda activate ${{ env.conda-env-name-no-time }}-$(date --date "${{ env.workflow-timestamp }}" +%Y%m%d)
2222
git submodule sync
23-
./scripts/init-submodules-no-riscv-tools.sh
23+
./scripts/init-submodules-no-riscv-tools.sh --full
2424
shell: bash -leo pipefail {0}
2525

2626
# Note: You shouldn't need the other inputs since it shouldn't build RTL from scratch

.github/scripts/remote-do-rtl-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ source $SCRIPT_DIR/defaults.sh
1616

1717
cd $REMOTE_CHIPYARD_DIR
1818
git submodule sync
19-
./scripts/init-submodules-no-riscv-tools.sh
19+
./scripts/init-submodules-no-riscv-tools.sh --full
2020

2121
# Constellation can run without espresso, but this improves
2222
# elaboration time drastically

.github/workflows/chipyard-run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ jobs:
365365
- name: Build Gemmini FireMarshal
366366
run: |
367367
conda activate ${{ env.conda-env-name-no-time }}-$(date --date "${{ env.workflow-timestamp }}" +%Y%m%d)
368-
cd ${{ github.workspace }} && ./scripts/init-submodules-no-riscv-tools.sh
368+
cd ${{ github.workspace }} && ./scripts/init-submodules-no-riscv-tools.sh --full
369369
cd ${{ github.workspace }} && source ./scripts/fix-open-files.sh
370370
git submodule update --init software/firemarshal && cd software/firemarshal && ./init-submodules.sh
371371
cd ${{ github.workspace }}/generators/gemmini/software && ${{ github.workspace }}/software/firemarshal/marshal -v -d build gemmini-smoke.json

0 commit comments

Comments
 (0)