Skip to content

Commit 8b03262

Browse files
committed
Skip FPGA ROM tests in nightly when testing with older ROMs
1 parent 776d7f9 commit 8b03262

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/fpga.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,13 @@ jobs:
182182
if [[ "${{ inputs.workflow_call }}" && "${{ inputs.hw-version }}" != "latest" ]]; then
183183
FEATURES=$FEATURES,hw-${{ inputs.hw-version }}
184184
fi
185+
# Skip ROM tests when testing with older ROMs
186+
EXCLUDE_ARG=""
187+
if [[ "${{ inputs.rom_version }}" != "latest" ]]; then
188+
EXCLUDE_ARG="--exclude rom_integration_tests"
189+
fi
185190
cargo nextest archive \
191+
$EXCLUDE_ARG \
186192
--features=${FEATURES} \
187193
--release \
188194
--target=aarch64-unknown-linux-gnu \

0 commit comments

Comments
 (0)