Skip to content

Commit

Permalink
CI: Add tests for _open targets
Browse files Browse the repository at this point in the history
Signed-off-by: Eryk Szpotanski <[email protected]>
  • Loading branch information
eszpotanski committed Apr 19, 2024
1 parent 28482b7 commit be72393
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ jobs:
- name: build target
run: |
bazel build --subcommands --verbose_failures --sandbox_debug ${{ matrix.STAGE_TARGET }}
- name: open target
if: matrix.STAGE_TARGET == 'L1MetadataArray_test_generate_abstract'
run: |
for stage in "synth" "floorplan" "place" "cts"; do
echo | bazel build --subcommands --verbose_failures --sandbox_debug L1MetadataArray_test_${stage}_open
done
test-make-script-target:
name: Execute sample _make scripts
Expand Down Expand Up @@ -108,3 +114,9 @@ jobs:
env:
TARGET: L1MetadataArray_test
run: .github/scripts/build_local_target.sh
- name: open targets
run: |
for stage in "open_synth" "floorplan" "place" "cts"; do
bazel build --subcommands --verbose_failures --sandbox_debug L1MetadataArray_test_${stage}_make
echo | bazel-bin/L1MetadataArray_test_${stage}_open open_${stage#open_}
done

0 comments on commit be72393

Please sign in to comment.