faster aarch64 test execution

This commit is contained in:
Yann Collet 2025-02-11 13:11:29 -08:00
parent 0b8119f0ad
commit 85c39b78cf

View File

@ -495,9 +495,9 @@ jobs:
if: ${{ matrix.name == 'ARM64' }}
run: |
make clean
CFLAGS="-march=armv8-a -Og" LDFLAGS="-static -z force-bti" MOREFLAGS="-mbranch-protection=standard" CC=$XCC QEMU_SYS=$XEMU make check
LDFLAGS="-static" CC=$XCC QEMU_SYS=$XEMU make -j check
make clean
CFLAGS="-march=armv8-a -Og" LDFLAGS="-static" CC=$XCC QEMU_SYS=$XEMU make check
LDFLAGS="-static -z force-bti" MOREFLAGS="-mbranch-protection=standard" CC=$XCC QEMU_SYS=$XEMU make check V=1
- name: PPC
if: ${{ matrix.name == 'PPC' }}
run: |