We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2e3abb commit 8ed2959Copy full SHA for 8ed2959
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