Skip to content

Commit

Permalink
chore: use larger runners
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Oct 6, 2023
1 parent b8559c0 commit 6888cca
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
fail-fast: false
matrix:
suite:
- minimal --skip-all
- k8s
- datasources
- search
- git
- { name: minimal --skip-all, on: ubuntu-latest }
- { name: k8s, on: ubuntu-4vcpu }
- { name: datasources, on: ubuntu-4vcpu }
- { name: search, on: ubuntu-4vcpu }
- { name: git, on: ubuntu-latest }
# - restic
runs-on: ubuntu-latest
runs-on: ${{ matrix.suite.on }}
steps:
- name: Install Go
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 # v2.2.0
Expand All @@ -43,10 +43,10 @@ jobs:
env:
KUBERNETES_VERSION: v1.20.7
GH_TOKEN: ${{ secrets.CHECKRUNS_TOKEN }}
run: ./test/e2e.sh fixtures/${{matrix.suite}}
run: ./test/e2e.sh fixtures/${{matrix.suite.name}}
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@b9f6c61d965bcaa18acc02d6daf706373a448f02 # v1.40
if: always() && github.event.repository.fork == 'false'
with:
files: test/test-results.xml
check_name: E2E - ${{matrix.suite}}
check_name: E2E - ${{matrix.suite.name}}

0 comments on commit 6888cca

Please sign in to comment.