Skip to content

Commit 46cad73

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 46cad73

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
cat scripts/kirby.raw
2828
- name: make test
2929
run: |
30-
make test_ga || (cat scripts/weeping.raw ; exit 1)
30+
make test || (cat scripts/weeping.raw ; exit 1)
3131
cat scripts/kirby.raw
3232
3333
coding-style:

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)