diff options
author | 2022-06-04 12:01:01 -0700 | |
---|---|---|
committer | 2022-06-04 12:01:44 -0700 | |
commit | e0ac266adacf65f040a291f16b6205863e640751 (patch) | |
tree | ecaa6114606415e3b95ba707661d70a1cb87fd90 | |
parent | Docker: never pull image when using Docker Compose (diff) |
CI: use GH's Ubuntu 22.04 runner instead of the self-hosted one
-rw-r--r-- | .github/workflows/test.yaml | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 30e6ba3..51eb0f8 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, self-hosted] + os: [ubuntu-20.04, ubuntu-22.04] steps: - name: Download image artifact @@ -53,17 +53,9 @@ jobs: path: .coverage.* retention-days: 1 - # Self-hosted runner needs containers, images, networks, volumes, etc. - # removed because they persist across runs and may interfere. - - name: Docker cleanup - if: matrix.os == 'self-hosted' && always() - run: | - export IMAGE_SUFFIX='-venv:${{ inputs.version }}' - docker-compose down --rmi all --remove-orphans -v -t 0 - report: name: Report coverage - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest needs: test steps: |