Skip to content

Commit

Permalink
Add verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel committed Jan 16, 2025
1 parent 8770852 commit 3440872
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Run unit tests
# GitHub is using Cobalt-100, which has 128-bit SVE so we cannot test sve_256 here
run: ctest -E test-unit-sve_256
run: ctest -E test-unit-sve_256 --rerun-failed --output-on-failure
working-directory: build_rel

build-ubuntu-arm64-gcc:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
python ./Test/astc_test_image.py --encoder neon --test-set Small
- name: Run unit tests
run: ctest
run: ctest --rerun-failed --output-on-failure
working-directory: build_rel

build-ubuntu-x64-clang:
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
python ./Test/astc_test_image.py --encoder all-x86 --test-set Small
- name: Run unit tests
run: ctest
run: ctest --rerun-failed --output-on-failure
working-directory: build_rel

build-ubuntu-x64-gcc:
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
python ./Test/astc_test_image.py --encoder all-x86 --test-set Small
- name: Run unit tests
run: ctest
run: ctest --rerun-failed --output-on-failure
working-directory: build_rel

build-macos-x64-clang:
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
python ./Test/astc_test_image.py --encoder sse4.1 --test-set Small
- name: Run unit tests
run: ctest -E test-unit-avx2
run: ctest -E test-unit-avx2 --rerun-failed --output-on-failure
working-directory: build_rel

build-macos-universal-clang:
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
python ./Test/astc_test_image.py --encoder universal --test-set Small
- name: Run unit tests
run: ctest -E test-unit-avx2
run: ctest -E test-unit-avx2 --rerun-failed --output-on-failure
working-directory: build_rel

build-windows-x64-msvc:
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
shell: cmd

- name: Run unit tests
run: ctest -C Release
run: ctest -C Release --rerun-failed --output-on-failure
working-directory: build_rel

build-windows-x64-clangcl:
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
shell: cmd

- name: Run unit tests
run: ctest -C Release
run: ctest -C Release --rerun-failed --output-on-failure
working-directory: build_rel

build-windows-arm64-clangcl:
Expand Down

0 comments on commit 3440872

Please sign in to comment.