Swap build step order in action file

The check for testing failure was coming before rtunning the tests.
This commit is contained in:
Stephen Webb
2022-06-07 11:02:33 -04:00
committed by Stephen M. Webb
parent 7cf6e84bb8
commit 33c4d2a506

View File

@@ -59,10 +59,6 @@ jobs:
autoreconf -i
./configure --build=$BUILD --host=$HOST
make -j8
- name: Show Logs
if: ${{ failure() }}
run: |
cat tests/test-suite.log 2>/dev/null
- name: Test (native)
if: ${{ success() && (matrix.HOST == 'x86_64-linux-gnu' || matrix.HOST == 'x86-linux-gnu') }}
run: |
@@ -70,6 +66,10 @@ jobs:
sudo bash -c 'echo core.%p.%p > /proc/sys/kernel/core_pattern'
ulimit -c unlimited
make check -j32
- name: Show Logs
if: ${{ failure() }}
run: |
cat tests/test-suite.log 2>/dev/null
build-cross-qemu:
runs-on: ubuntu-latest