mirror of
https://github.com/libunwind/libunwind.git
synced 2026-01-12 00:04:03 +08:00
Swap build step order in action file
The check for testing failure was coming before rtunning the tests.
This commit is contained in:
committed by
Stephen M. Webb
parent
7cf6e84bb8
commit
33c4d2a506
8
.github/workflows/CI-linux.yml
vendored
8
.github/workflows/CI-linux.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user