Skip to content

Commit

Permalink
Run make generate-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nolancon committed Dec 17, 2024
1 parent 94606e0 commit 83a4119
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 2 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/chainsaw-e2e-test-1.30.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This file was auto-generated by hack/generate-tests.sh
name: chainsaw e2e test 1.30
on: [push]
concurrency:
group: chainsaw-1.30-${{ github.ref }}-1
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: chainsaw e2e test 1.30
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'

- name: Vendor Dependencies
run: make vendor vendor.check

- name: Docker cache
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('go.sum') }}}

- name: Run chainsaw tests 1.30
run: make chainsaw
env:
LATEST_KUBE_VERSION: '1.30'
AWS_ACCESS_KEY_ID: 'Dummy'
AWS_SECRET_ACCESS_KEY: 'Dummy'
AWS_DEFAULT_REGION: 'us-east-1'
43 changes: 43 additions & 0 deletions .github/workflows/chainsaw-e2e-test-1.31.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This file was auto-generated by hack/generate-tests.sh
name: chainsaw e2e test 1.31
on: [push]
concurrency:
group: chainsaw-1.31-${{ github.ref }}-1
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: chainsaw e2e test 1.31
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'

- name: Vendor Dependencies
run: make vendor vendor.check

- name: Docker cache
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('go.sum') }}}

- name: Run chainsaw tests 1.31
run: make chainsaw
env:
LATEST_KUBE_VERSION: '1.31'
AWS_ACCESS_KEY_ID: 'Dummy'
AWS_SECRET_ACCESS_KEY: 'Dummy'
AWS_DEFAULT_REGION: 'us-east-1'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.26.14
image: kindest/node:v1.30.8
extraPortMappings:
- containerPort: 32566
hostPort: 32566
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.27.11
image: kindest/node:v1.31.4
extraPortMappings:
- containerPort: 32566
hostPort: 32566
Expand Down

0 comments on commit 83a4119

Please sign in to comment.