We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2e3abb commit 46cad73Copy full SHA for 46cad73
.github/workflows/main.yml
@@ -27,7 +27,7 @@ jobs:
27
cat scripts/kirby.raw
28
- name: make test
29
run: |
30
- make test_ga || (cat scripts/weeping.raw ; exit 1)
+ make test || (cat scripts/weeping.raw ; exit 1)
31
32
33
coding-style:
Makefile
@@ -58,11 +58,11 @@ check: qtest
58
59
test: qtest scripts/driver.py
60
$(Q)scripts/check-repo.sh
61
- scripts/driver.py -c
62
-
63
-test_ga: qtest scripts/driver.py
64
- $(Q)scripts/check-repo.sh
65
- scripts/driver.py -c --group-output
+ $(Q)if [ -n "$$GITHUB_ACTIONS" ]; then \
+ scripts/driver.py -c --group-output; \
+ else \
+ scripts/driver.py -c; \
+ fi
66
67
valgrind_existence:
68
@which valgrind 2>&1 > /dev/null || (echo "FATAL: valgrind not found"; exit 1)
0 commit comments