We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776d7f9 commit 8b03262Copy full SHA for 8b03262
1 file changed
.github/workflows/fpga.yml
@@ -182,7 +182,13 @@ jobs:
182
if [[ "${{ inputs.workflow_call }}" && "${{ inputs.hw-version }}" != "latest" ]]; then
183
FEATURES=$FEATURES,hw-${{ inputs.hw-version }}
184
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
190
cargo nextest archive \
191
+ $EXCLUDE_ARG \
192
--features=${FEATURES} \
193
--release \
194
--target=aarch64-unknown-linux-gnu \
0 commit comments