summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-09-29 13:28:56 +1000
committerDarren Tucker <dtucker@dtucker.net>2021-09-29 13:28:56 +1000
commitc8d92d3d4f7d560146f2f936156ec4dac3fc5811 (patch)
tree5c5319d496d7b30467f8f0e845e3ef53c08b4c71
parent360fb41ef8359619ab90b0d131c914494e55d3dd (diff)
Add make clean step to tests.
-rw-r--r--.github/workflows/c-cpp.yml2
-rw-r--r--.github/workflows/selfhosted.yml2
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index b6cd3441..3ea466a7 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -73,6 +73,8 @@ jobs:
run: autoreconf
- name: configure
run: ./.github/configure.sh ${{ matrix.configs }}
+ - name: make clean
+ run: make clean
- name: make
run: make -j2
- name: make tests
diff --git a/.github/workflows/selfhosted.yml b/.github/workflows/selfhosted.yml
index df6eca71..f102786e 100644
--- a/.github/workflows/selfhosted.yml
+++ b/.github/workflows/selfhosted.yml
@@ -74,6 +74,8 @@ jobs:
run: vmstartup
- name: configure
run: vmrun ./.github/configure.sh ${{ matrix.configs }}
+ - name: make clean
+ run: vmrun make clean
- name: make
run: vmrun make
- name: make tests