print failing tests
This commit is contained in:
parent
c5ebfbb57b
commit
d60c291402
1 changed files with 8 additions and 8 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
ubuntu-20-04-build-gcc:
|
ubuntu-20-04-build-gcc:
|
||||||
runs-on: ubuntu-20-04
|
runs-on: ubuntu-20-04
|
||||||
steps:
|
steps:
|
||||||
|
@ -35,7 +35,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
ubuntu-latest-build-gcc:
|
ubuntu-latest-build-gcc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -50,7 +50,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
ubuntu-18-04-build-clang-3_9:
|
ubuntu-18-04-build-clang-3_9:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
|
@ -69,7 +69,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
ubuntu-20-04-build-clang:
|
ubuntu-20-04-build-clang:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
|
@ -88,7 +88,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
ubuntu-latest-build-clang:
|
ubuntu-latest-build-clang:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -107,7 +107,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
macos-latest-build:
|
macos-latest-build:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -122,7 +122,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
macos-12-build:
|
macos-12-build:
|
||||||
runs-on: macOS-12
|
runs-on: macOS-12
|
||||||
steps:
|
steps:
|
||||||
|
@ -137,4 +137,4 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: cd build && make
|
run: cd build && make
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd build && make test
|
run: cd build && ctest --output-on-failure
|
||||||
|
|
Loading…
Reference in a new issue