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 2bd9989Copy full SHA for 2bd9989
1 file changed
.github/workflows/fpga.yml
@@ -170,8 +170,11 @@ jobs:
170
run: |
171
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER="aarch64-linux-gnu-gcc"
172
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS="-C link-arg=--sysroot=$FARGO_SYSROOT"
173
+ EXCLUDE_ARG=""
174
if [ "${{ inputs.rom-version }}" != "latest" ]; then
175
export CPTRA_CI_ROM_VERSION="${{ inputs.rom-version }}"
176
+ # Skip ROM tests when testing with older ROMs
177
+ EXCLUDE_ARG="--exclude caliptra-rom"
178
fi
179
180
if [ "${{ inputs.workflow_call }}" ]; then
@@ -183,6 +186,8 @@ jobs:
183
186
FEATURES=$FEATURES,hw-${{ inputs.hw-version }}
184
187
185
188
cargo nextest archive \
189
+ --workspace \
190
+ $EXCLUDE_ARG \
191
--features=${FEATURES} \
192
--release \
193
--target=aarch64-unknown-linux-gnu \
0 commit comments