Skip to content

Commit 0626b5c

Browse files
Merge branch 'master' into master
2 parents 94899a4 + 5d79ed9 commit 0626b5c

File tree

187 files changed

+7478
-5698
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+7478
-5698
lines changed

.github/workflows/build-kube-ovn-base-dpdk.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
type: choice
99
options:
1010
- master
11+
- release-1.15
1112
- release-1.14
1213
- release-1.13
1314
- release-1.12
@@ -22,6 +23,7 @@ jobs:
2223
matrix:
2324
branch:
2425
- master
26+
- release-1.15
2527
- release-1.14
2628
- release-1.13
2729
- release-1.12
@@ -57,6 +59,7 @@ jobs:
5759
matrix:
5860
branch:
5961
- master
62+
- release-1.15
6063
- release-1.14
6164
- release-1.13
6265
- release-1.12

.github/workflows/build-kube-ovn-base.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
type: choice
99
options:
1010
- master
11+
- release-1.15
1112
- release-1.14
1213
- release-1.13
1314
- release-1.12
@@ -27,6 +28,7 @@ jobs:
2728
- arm64
2829
branch:
2930
- master
31+
- release-1.15
3032
- release-1.14
3133
- release-1.13
3234
- release-1.12
@@ -77,6 +79,7 @@ jobs:
7779
matrix:
7880
branch:
7981
- master
82+
- release-1.15
8083
- release-1.14
8184
- release-1.13
8285
- release-1.12

.github/workflows/build-windows.yaml

Lines changed: 0 additions & 280 deletions
This file was deleted.

.github/workflows/build-x86-image.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ concurrency:
2222

2323
env:
2424
# renovate: datasource=github-releases depName=kind packageName=kubernetes-sigs/kind
25-
KIND_VERSION: v0.30.0
25+
KIND_VERSION: v0.31.0
2626
# renovate: datasource=github-releases depName=golangci-lint packageName=golangci/golangci-lint
2727
GOLANGCI_LINT_VERSION: v2.7.2
2828
# renovate: datasource=github-releases depName=helm packageName=helm/helm
2929
HELM_VERSION: v4.0.4
3030
# renovate: datasource=github-releases depName=submariner packageName=submariner-io/submariner
3131
SUBMARINER_VERSION: 0.21.2
32+
# renovate: datasource=github-releases depName=talos packageName=siderolabs/talos
33+
TALOS_VERSION: v1.12.0
3234

3335
jobs:
3436
build-kube-ovn-base:
@@ -1152,8 +1154,6 @@ jobs:
11521154
- name: Create kind cluster
11531155
env:
11541156
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1155-
# KubeVirt < v1.7 does not support k8s >= v1.34
1156-
K8S_VERSION: v1.33.2
11571157
run: |
11581158
pipx install jinjanator
11591159
make kind-ghcr-pull kind-init-${{ matrix.ip-family }}
@@ -2235,7 +2235,7 @@ jobs:
22352235
- name: Create kind cluster
22362236
env:
22372237
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2238-
k8s_version: ${{ matrix.k8s-version }}
2238+
K8S_VERSION: ${{ matrix.k8s-version }}
22392239
run: |
22402240
pipx install jinjanator
22412241
make kind-ghcr-pull kind-init
@@ -2293,7 +2293,11 @@ jobs:
22932293
- uses: actions/checkout@v6
22942294

22952295
- name: Install talosctl
2296-
run: curl -sL https://talos.dev/install | sh
2296+
run: |
2297+
curl -sLo install-talosctl.sh https://talos.dev/install
2298+
sed -i "s|/latest/download/|/download/${{ env.TALOS_VERSION }}/|g" install-talosctl.sh
2299+
sed -i "s|/latest/|/${{ env.TALOS_VERSION }}/|g" install-talosctl.sh
2300+
sh install-talosctl.sh
22972301
22982302
- name: Install KVM and libvirt
22992303
run: |

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ jobs:
7575
- name: Build
7676
run: |
7777
make build-go
78-
make build-go-windows
7978
8079
- name: Perform CodeQL Analysis
8180
uses: github/codeql-action/analyze@v4

0 commit comments

Comments
 (0)