-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* separate-ci-checks: GITHUB: workflows/testing.yml: avoid make all vs make check races Makefile.mk: ensure all checks are added $(CHECK_TARGETS) Signed-off-by: Tim Janik <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
env: | ||
CITAG: arch | ||
CIMAKE: misc/cirun -u 1000 make | ||
CICACHE: /tmp/cicache | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -59,9 +58,9 @@ jobs: | |
misc/cirun -u 1000 misc/version.sh | ||
- name: 'Run X11 GUI Tests' | ||
run: | | ||
$CIMAKE GCC_COLORS="" -j`nproc` all | ||
$CIMAKE -j`nproc` check | ||
$CIMAKE x11test-v | ||
misc/cirun -u 1000 make GCC_COLORS="" -j`nproc` all | ||
misc/cirun -u 1000 make -j`nproc` check | ||
misc/cirun -u 1000 make x11test-v | ||
# Artifact upload from x11test | ||
- uses: actions/[email protected] | ||
if: always() | ||
|
@@ -74,7 +73,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
env: | ||
CITAG: focal | ||
CIMAKE: misc/cirun -u 1000 make | ||
CICACHE: /tmp/cicache | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -88,10 +86,11 @@ jobs: | |
misc/cirun -u 1000 misc/version.sh | ||
- name: 'Make all check' | ||
run: | | ||
$CIMAKE -j`nproc` all check | ||
misc/cirun -u 1000 make -j`nproc` all | ||
misc/cirun -u 1000 make -j`nproc` check | ||
- name: 'Make clang-tidy' | ||
run: | | ||
$CIMAKE -j`nproc` clang-tidy | ||
misc/cirun -u 1000 make -j`nproc` clang-tidy | ||
# Artifact upload from clang-tidy | ||
- uses: actions/[email protected] | ||
with: { name: clang-tidy, path: out/clang-tidy/ } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters