diff options
author | Joshua Sing <joshua@joshuasing.dev> | 2025-04-13 01:09:48 +1000 |
---|---|---|
committer | Joshua Sing <joshua@joshuasing.dev> | 2025-04-13 01:09:48 +1000 |
commit | 090f7892f7f7280f69289dc5e99ab5ed64908269 (patch) | |
tree | 056a374ba1613ed654026db9709599adc54ff4d4 /.github | |
parent | a516251595b6451806372d5f7d08deb581a4824c (diff) | |
download | portable-090f7892f7f7280f69289dc5e99ab5ed64908269.tar.gz portable-090f7892f7f7280f69289dc5e99ab5ed64908269.tar.bz2 portable-090f7892f7f7280f69289dc5e99ab5ed64908269.zip |
scripts/test: use lib64 for loongarch64
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index fd0650e..88dd15e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml | |||
@@ -40,7 +40,7 @@ jobs: | |||
40 | uses: actions/checkout@v4 | 40 | uses: actions/checkout@v4 |
41 | 41 | ||
42 | - name: "Run tests" | 42 | - name: "Run tests" |
43 | run: ./scripts/test || cat tests/test-suite.log | 43 | run: ./scripts/test || (status=$?; cat tests/test-suite.log; exit $status) |
44 | env: | 44 | env: |
45 | ARCH: "${{ matrix.arch }}" | 45 | ARCH: "${{ matrix.arch }}" |
46 | CC: "${{ matrix.compiler }}" | 46 | CC: "${{ matrix.compiler }}" |