Skip to content

Commit 8ed2959

Browse files
committed
Remove dedicated test target to CI pipeline
Target "test_ga" for dedicated test workflow is removed. Instead, check if environment variable GITHUB_ACTIONS is set to detect which environment is running the test. GITHUB_ACTIONS is set to "true" automatically when running CI workflow on github actions. It is documented in the link below. Link: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#default-environment-variables Change-Id: I9359514623d96dfa387524a67c9de34d94b87c5c
1 parent d2e3abb commit 8ed2959

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ check: qtest
5858

5959
test: qtest scripts/driver.py
6060
$(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
61+
$(Q)if [ -n "$$GITHUB_ACTIONS" ]; then \
62+
scripts/driver.py -c --group-output; \
63+
else \
64+
scripts/driver.py -c; \
65+
fi
6666

6767
valgrind_existence:
6868
@which valgrind 2>&1 > /dev/null || (echo "FATAL: valgrind not found"; exit 1)

0 commit comments

Comments
 (0)