Skip to content

Commit 5143a83

Browse files
leokondrashovJooyoungPark73
authored andcommitted
Bump versions in tests
Signed-off-by: Leonid Kondrashov <leo.kondrashov@gmail.com>
1 parent b8c79e6 commit 5143a83

16 files changed

+33
-31
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
strategy:
2424
matrix:
25-
go: ['1.18', '1.19']
25+
go: ['1.21', '1.22']
2626
# Build all variants regardless of failures
2727
fail-fast: false
2828

.github/workflows/build_setup.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
name: Build setup scripts
2323
runs-on: ubuntu-20.04
2424
steps:
25-
- name: Set up Go 1.19
25+
- name: Set up Go 1.22
2626
uses: actions/setup-go@v5
2727
with:
28-
go-version: '1.19'
28+
go-version: '1.22'
2929

3030
- name: Check out the code
3131
uses: actions/checkout@v4

.github/workflows/cri_minio_test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
- name: Setup TMPDIR
3535
run: mkdir -p $TMPDIR
3636

37-
- name: Set up Go 1.19
37+
- name: Set up Go 1.22
3838
uses: actions/setup-go@v5
3939
with:
40-
go-version: '1.19'
40+
go-version: '1.22'
4141

4242
- name: Check out code into the Go module directory
4343
uses: actions/checkout@v4

.github/workflows/cri_stock_containerd_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up golang
2727
uses: actions/setup-go@v5
2828
with:
29-
go-version: '1.19'
29+
go-version: '1.22'
3030

3131
- name: Build setup scripts
3232
run: pushd scripts && go build -o setup_tool && popd

.github/workflows/cri_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up golang
3232
uses: actions/setup-go@v5
3333
with:
34-
go-version: '1.19'
34+
go-version: '1.22'
3535

3636
- name: Add rsync
3737
run: |

.github/workflows/integration_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
test-name: [test, test-man-bench]
3232
steps:
3333

34-
- name: Set up Go 1.19
34+
- name: Set up Go 1.22
3535
uses: actions/setup-go@v5
3636
with:
37-
go-version: '1.19'
37+
go-version: '1.22'
3838

3939
- name: Set up Python 3.x
4040
uses: actions/setup-python@v5

.github/workflows/nightly_tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Setup TMPDIR
2121
run: mkdir -p $TMPDIR
2222

23-
- name: Set up Go 1.19
23+
- name: Set up Go 1.22
2424
uses: actions/setup-go@v5
2525
with:
26-
go-version: '1.19'
26+
go-version: '1.22'
2727

2828
- name: Upgrade git
2929
run: |
@@ -77,10 +77,10 @@ jobs:
7777
- name: Setup TMPDIR
7878
run: mkdir -p $TMPDIR
7979

80-
- name: Set up Go 1.19
80+
- name: Set up Go 1.22
8181
uses: actions/setup-go@v5
8282
with:
83-
go-version: '1.19'
83+
go-version: '1.22'
8484

8585
- name: Check out code into the Go module directory
8686
uses: actions/checkout@v4

.github/workflows/openyurt-unit-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- name: Set up Go 1.19
25+
- name: Set up Go 1.22
2626
uses: actions/setup-go@v5
2727
with:
28-
go-version: '1.19'
28+
go-version: '1.22'
2929

3030
- name: Check out the code
3131
uses: actions/checkout@v4

.github/workflows/stargz_tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
stargz-container-test:
2424
name: Test running stargz-based image using kn
2525
env:
26-
KIND_VERSION: v0.14.0
27-
K8S_VERSION: v1.23
26+
KIND_VERSION: v0.22.0
27+
K8S_VERSION: v1.29
2828
YAML_DIR: workloads/container
2929
runs-on: ubuntu-20.04
3030
strategy:
@@ -42,10 +42,10 @@ jobs:
4242
- name: Checkout LFS objects
4343
run: git lfs checkout
4444

45-
- name: Set up Go 1.19
45+
- name: Set up Go 1.22
4646
uses: actions/setup-go@v5
4747
with:
48-
go-version: '1.19'
48+
go-version: '1.22'
4949

5050
- name: Build setup scripts
5151
run: pushd scripts && go build -o setup_tool && popd

.github/workflows/unit_tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
module: [misc, networking, snapshotting]
3030
steps:
3131

32-
- name: Set up Go 1.19
32+
- name: Set up Go 1.22
3333
uses: actions/setup-go@v5
3434
with:
35-
go-version: '1.19'
35+
go-version: '1.22'
3636

3737
- name: Set up Python 3.x
3838
uses: actions/setup-python@v5
@@ -74,10 +74,10 @@ jobs:
7474
module: [profile]
7575
steps:
7676

77-
- name: Set up Go 1.19
77+
- name: Set up Go 1.22
7878
uses: actions/setup-go@v5
7979
with:
80-
go-version: '1.19'
80+
go-version: '1.22'
8181

8282
- name: Set up Python 3.x
8383
uses: actions/setup-python@v5
@@ -122,10 +122,10 @@ jobs:
122122
module: [ ctriface, ctriface/image, devmapper ]
123123
steps:
124124

125-
- name: Set up Go 1.19
125+
- name: Set up Go 1.22
126126
uses: actions/setup-go@v5
127127
with:
128-
go-version: '1.19'
128+
go-version: '1.22'
129129

130130
- name: Upgrade git
131131
run: |

scripts/cloudlab/setup_node.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,6 @@ fi
6161

6262
if [ "$USE_STARGZ" == "use-stargz" ]; then
6363
$SCRIPTS/stargz/setup_stargz.sh
64-
fi
64+
fi
65+
66+
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq

scripts/github_runner/setup_integ_runners_host.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $PWD/../install_go.sh
5454

5555
# install kind from ease-lab/kind
5656
rm -rf /tmp/kind/
57-
git clone -b custom_docker_params_for_vHive_v0.12.0 https://github.com/ease-lab/kind /tmp/kind/
57+
git clone -b custom_docker_params_for_vHive_v0.17.0 https://github.com/ease-lab/kind /tmp/kind/
5858
cd /tmp/kind
5959
source /etc/profile && go build
6060
sudo mv kind /usr/local/bin/

scripts/stargz/01-kind.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -eo pipefail
44

55
kindVersion=$(kind version);
6-
K8S_VERSION=${k8sVersion:-v1.23.4@sha256:0e34f0d0fd448aa2f2819cfd74e99fe5793a6e4938b328f657c8e3f81ee0dfb9}
6+
K8S_VERSION=${k8sVersion:-v1.29.1}
77
KIND_BASE=${KIND_BASE:-kindest/node}
88
CLUSTER_NAME=${KIND_CLUSTER_NAME:-knative}
99

scripts/stargz/02-kourier.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -eo pipefail
44
set -u
55

6-
KNATIVE_NET_KOURIER_VERSION=${KNATIVE_NET_KOURIER_VERSION:-1.4.0}
6+
KNATIVE_NET_KOURIER_VERSION=${KNATIVE_NET_KOURIER_VERSION:-1.13.0}
77

88
## INSTALL KOURIER
99
n=0

scripts/stargz/02-serving.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -eo pipefail
44
set -u
55

6-
KNATIVE_VERSION=${KNATIVE_VERSION:-1.4.0}
6+
KNATIVE_VERSION=${KNATIVE_VERSION:-1.13.0}
77

88
wget -q https://github.com/knative/client/releases/download/knative-v${KNATIVE_VERSION}/kn-linux-amd64
99
mv kn-linux-amd64 kn && chmod +x kn

scripts/stargz/setup_stargz.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
44
ROOT="$( cd $DIR && cd ../.. && pwd)"
55
BINS=$ROOT/bin
66
CONFIGS=$ROOT/configs/stargz
7-
STARGZ_VERSION=v0.13.0
7+
STARGZ_VERSION=v0.15.1
88

99
# Get stargz snapshotter tar
1010
wget --continue --quiet https://github.com/containerd/stargz-snapshotter/releases/download/${STARGZ_VERSION}/stargz-snapshotter-${STARGZ_VERSION}-linux-amd64.tar.gz

0 commit comments

Comments
 (0)