Skip to content

Commit de760c7

Browse files
committed
update action v1
1 parent da67ef0 commit de760c7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/e2e-test-k8s.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ concurrency:
3535
jobs:
3636
prepare:
3737
name: Prepare
38-
runs-on: buildjet-2vcpu-ubuntu-1804
38+
runs-on: buildjet-2vcpu-ubuntu-2004
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@v2
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Install kind
5050
run: |
51-
go install sigs.k8s.io/kind@v0.23.0
51+
go install sigs.k8s.io/kind@v0.13.0
5252
5353
- name: Install Helm
5454
run: |
@@ -59,7 +59,7 @@ jobs:
5959
e2e-test:
6060
needs:
6161
- prepare
62-
runs-on: buildjet-2vcpu-ubuntu-1804
62+
runs-on: buildjet-2vcpu-ubuntu-2004
6363
steps:
6464
- name: Checkout
6565
uses: actions/checkout@v4
@@ -85,6 +85,16 @@ jobs:
8585
username: ${{ secrets.PRIVATE_DOCKER_USERNAME }}
8686
password: ${{ secrets.PRIVATE_DOCKER_PASSWORD }}
8787

88+
- name: Launch Kind Cluster
89+
env:
90+
KIND_NODE_IMAGE: kindest/node:v1.18.20@sha256:38a8726ece5d7867fb0ede63d718d27ce2d41af519ce68be5ae7fcca563537ed
91+
run: |
92+
make kind-up
93+
94+
- name: Install Gateway API And CRDs
95+
run: |
96+
make install
97+
8898
- name: Build images
8999
env:
90100
TAG: dev
@@ -104,16 +114,6 @@ jobs:
104114
chmod +x /usr/local/bin/adc
105115
echo "ADC binary extracted to /usr/local/bin/adc"
106116
107-
- name: Launch Kind Cluster
108-
env:
109-
KIND_NODE_IMAGE: kindest/node:v1.18.20@sha256:38a8726ece5d7867fb0ede63d718d27ce2d41af519ce68be5ae7fcca563537ed
110-
run: |
111-
make kind-up
112-
113-
- name: Install Gateway API And CRDs
114-
run: |
115-
make install
116-
117117
- name: Download API7EE3 Chart
118118
run: |
119119
make download-api7ee3-chart

0 commit comments

Comments
 (0)