Skip to content

Commit

Permalink
fix(ci): switch to org registered runners
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Troian <[email protected]>
  • Loading branch information
troian committed Aug 14, 2024
1 parent 5dc28da commit 5c7378f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ jobs:
crd-e2e:
env:
KIND_NAME: kube
runs-on: provider-e2e
runs-on: core-e2e
steps:
- name: Cleanup build folder
run: |
rm -rf ./* || true
rm -rf ./.??* || true
- name: Setup GOPATH
run: echo "GOPATH=$GITHUB_WORKSPACE/go" >> $GITHUB_ENV
- name: Ensure GOPATH dirs
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ on:

jobs:
publish:
runs-on: provider-e2e
runs-on: core-e2e
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- name: Cleanup build folder
run: |
rm -rf ./* || true
rm -rf ./.??* || true
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,14 @@ jobs:
run: make lint

release-dry-run:
runs-on: ubuntu-latest
runs-on: core-e2e
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- name: Cleanup build folder
run: |
rm -rf ./* || true
rm -rf ./.??* || true
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down Expand Up @@ -129,6 +133,8 @@ jobs:
masks: ''
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: .cache/tests/coverage.txt

Expand Down

0 comments on commit 5c7378f

Please sign in to comment.