aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2021-12-25 13:04:47 -0800
committerGravatar MarkKoz <[email protected]>2021-12-25 13:04:47 -0800
commitefb4b0b17d3a8eb0821c4a54e2b29c5feb61dc80 (patch)
treec2a2f478e2a27093c18fef5db49a645e87d9ee41
parentCI: create a matrix with a self-hosted runner with cgroupv2 (diff)
CI: disable setup-python action on self-hosted runner
Python 3.9 is available on the self-hosted runner and is sufficient to run coveralls. Trying to get the setup-python action supported on the self-hosted runner proved to be problematic.
-rw-r--r--.github/workflows/lint-test-build-push.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint-test-build-push.yaml b/.github/workflows/lint-test-build-push.yaml
index 17f30b0..020b2a5 100644
--- a/.github/workflows/lint-test-build-push.yaml
+++ b/.github/workflows/lint-test-build-push.yaml
@@ -148,7 +148,7 @@ jobs:
# Note: This step runs even if the test step failed to make
# sure we process the coverage reports.
- name: Setup python
- if: always() && steps.run_tests.outputs.started == 'true'
+ if: matrix.os != 'self-hosted' && always() && steps.run_tests.outputs.started == 'true'
id: python
uses: actions/setup-python@v2
with: