Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prow config to test release 1.7 of capm3 with go v1.22 #821

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 5 additions & 77 deletions prow/manifests/overlays/metal3/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1021,21 +1021,6 @@ presubmits:
- name: gomod
branches:
- main
skip_if_only_changed: '(((^|/)OWNERS)|((^|/)OWNERS_ALIASES)|(\.md))$'
decorate: true
spec:
containers:
- args:
- ./hack/gomod.sh
command:
- sh
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: gomod
branches:
- release-1.7
skip_if_only_changed: '(((^|/)OWNERS)|((^|/)OWNERS_ALIASES)|(\.md))$'
decorate: true
Expand All @@ -1048,7 +1033,7 @@ presubmits:
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.21
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: gomod
branches:
Expand All @@ -1071,18 +1056,6 @@ presubmits:
- name: test
branches:
- main
run_if_changed: "^(Makefile|hack/.*)$"
decorate: true
spec:
containers:
- args:
- test
command:
- make
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: test
branches:
- release-1.7
run_if_changed: "^(Makefile|hack/.*)$"
decorate: true
Expand All @@ -1092,7 +1065,7 @@ presubmits:
- test
command:
- make
image: docker.io/golang:1.21
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: test
branches:
Expand Down Expand Up @@ -1159,21 +1132,6 @@ presubmits:
- name: generate
branches:
- main
skip_if_only_changed: '(((^|/)OWNERS)|((^|/)OWNERS_ALIASES)|(\.md))$'
decorate: true
spec:
containers:
- args:
- ./hack/codegen.sh
command:
- sh
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: generate
branches:
- release-1.7
skip_if_only_changed: '(((^|/)OWNERS)|((^|/)OWNERS_ALIASES)|(\.md))$'
decorate: true
Expand All @@ -1186,7 +1144,7 @@ presubmits:
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.21
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: generate
branches:
Expand All @@ -1208,21 +1166,6 @@ presubmits:
- name: unit
branches:
- main
skip_if_only_changed: '(((^|/)OWNERS)|((^|/)OWNERS_ALIASES)|(\.md))$'
decorate: true
spec:
containers:
- args:
- ./hack/unit.sh
command:
- sh
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: unit
branches:
- release-1.7
skip_if_only_changed: '(((^|/)OWNERS)|((^|/)OWNERS_ALIASES)|(\.md))$'
decorate: true
Expand All @@ -1235,7 +1178,7 @@ presubmits:
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.21
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: unit
branches:
Expand Down Expand Up @@ -1273,21 +1216,6 @@ presubmits:
- name: build
branches:
- main
run_if_changed: "^api|^test|^Makefile$"
decorate: true
spec:
containers:
- args:
- ./hack/build.sh
command:
- sh
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: build
branches:
- release-1.7
run_if_changed: "^api|^test|^Makefile$"
decorate: true
Expand All @@ -1300,7 +1228,7 @@ presubmits:
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/golang:1.21
image: docker.io/golang:1.22
imagePullPolicy: Always
- name: build
branches:
Expand Down
Loading