.github/workflows/build.yml: run unit tests with "--print-errorlogs"
With this option, Meson prints errors instead of logging them to a file (that would be inaccessible).
This commit is contained in:
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@@ -121,7 +121,7 @@ jobs:
|
||||
run: meson compile -C output/full --verbose
|
||||
|
||||
- name: Unit Tests
|
||||
run: meson test -C output/full
|
||||
run: meson test -C output/full --print-errorlogs
|
||||
|
||||
- name: Configure Mini
|
||||
run: |
|
||||
@@ -148,7 +148,7 @@ jobs:
|
||||
run: meson compile -C output/mini --verbose
|
||||
|
||||
- name: Unit Tests Mini
|
||||
run: meson test -C output/mini
|
||||
run: meson test -C output/mini --print-errorlogs
|
||||
|
||||
build-macos:
|
||||
strategy:
|
||||
@@ -219,7 +219,7 @@ jobs:
|
||||
run: meson compile -C output/full --verbose
|
||||
|
||||
- name: Unit Tests
|
||||
run: meson test -C output/full
|
||||
run: meson test -C output/full --print-errorlogs
|
||||
|
||||
- name: Configure Mini
|
||||
run: |
|
||||
@@ -246,7 +246,7 @@ jobs:
|
||||
run: meson compile -C output/mini --verbose
|
||||
|
||||
- name: Unit Tests Mini
|
||||
run: meson test -C output/mini
|
||||
run: meson test -C output/mini --print-errorlogs
|
||||
|
||||
build-msys2:
|
||||
strategy:
|
||||
|
Reference in New Issue
Block a user