Skip to content

Commit

Permalink
ci: Reduce CI time for aarch64-pc-windows-gnullvm
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 7, 2023
1 parent 9a7f13c commit e096e35
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,13 +289,15 @@ jobs:
env:
RUSTDOCFLAGS: ${{ env.RUSTDOCFLAGS }} -C target-feature=+lse
RUSTFLAGS: ${{ env.RUSTFLAGS }} -C target-feature=+lse
if: startsWith(matrix.target, 'aarch64')
# QEMU + Wine is slow so test only cases where OS-specific code is called.
if: startsWith(matrix.target, 'aarch64') && matrix.target != 'aarch64-pc-windows-gnullvm'
# aarch64 +lse,+lse2
- run: tools/test.sh -vv --tests $TARGET $BUILD_STD $RELEASE
env:
RUSTDOCFLAGS: ${{ env.RUSTDOCFLAGS }} -C target-feature=+lse,+lse2
RUSTFLAGS: ${{ env.RUSTFLAGS }} -C target-feature=+lse,+lse2
if: startsWith(matrix.target, 'aarch64')
# QEMU + Wine is slow so test only cases where OS-specific code is called.
if: startsWith(matrix.target, 'aarch64') && matrix.target != 'aarch64-pc-windows-gnullvm'
# powerpc64 pwr7
# powerpc64- (big-endian) is skipped because it is pre-pwr8 by default
- run: tools/test.sh -vv --tests $TARGET $BUILD_STD $RELEASE
Expand Down

0 comments on commit e096e35

Please sign in to comment.