Skip to content

Commit

Permalink
Merge pull request #931 from Nordix/tuomo/add-ipam-1.9-to-prow
Browse files Browse the repository at this point in the history
add IPAM 1.9 release to Prow
  • Loading branch information
metal3-io-bot authored Dec 18, 2024
2 parents e4ae01a + 495c99e commit 4376e3e
Showing 1 changed file with 186 additions and 0 deletions.
186 changes: 186 additions & 0 deletions prow/config/jobs/metal3-io/ip-address-manager-release-1.9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
presubmits:
metal3-io/ip-address-manager:
- name: gomod
branches:
- release-1.9
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.23
imagePullPolicy: Always
# NOTE: The test jobs are for verifying the Makefile and hack/* scripts only
- name: test
branches:
- release-1.9
run_if_changed: "^(Makefile|hack/.*)$"
decorate: true
spec:
containers:
- args:
- test
command:
- make
image: docker.io/golang:1.23
imagePullPolicy: Always
- name: markdownlint
branches:
- release-1.9
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
- args:
- ./hack/markdownlint.sh
command:
- sh
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/pipelinecomponents/markdownlint-cli2:0.12.0@sha256:a3977fba9814f10d33a1d69ae607dc808e7a6470b2ba03e84c17193c0791aac0
imagePullPolicy: Always
- name: shellcheck
branches:
- release-1.9
run_if_changed: '((\.sh)|^Makefile)$'
decorate: true
spec:
containers:
- args:
- ./hack/shellcheck.sh
command:
- sh
env:
- name: IS_CONTAINER
value: "TRUE"
image: docker.io/koalaman/shellcheck-alpine:v0.10.0@sha256:5921d946dac740cbeec2fb1c898747b6105e585130cc7f0602eec9a10f7ddb63
imagePullPolicy: Always
- name: unit
branches:
- release-1.9
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.23
- name: generate
branches:
- release-1.9
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.23
imagePullPolicy: Always
- name: manifestlint
branches:
- release-1.9
skip_if_only_changed: '(((^|/)OWNERS)|((^|/)OWNERS_ALIASES)|(\.md))$'
decorate: true
spec:
containers:
- args:
- ./hack/manifestlint.sh
command:
- sh
env:
- name: IS_CONTAINER
value: "TRUE"
- name: KUBECONFORM_PATH
value: "/"
image: ghcr.io/yannh/kubeconform:v0.6.2-alpine@sha256:49b5f6b320d30c1b8b72a7abdf02740ac9dc36a3ba23b934d1c02f7b37e6e740
imagePullPolicy: Always
# name: {job_prefix}-{image_os}-e2e-basic-test-{capm3_target_branch}
- name: metal3-centos-e2e-basic-test-release-1-9
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-ubuntu-e2e-basic-test-release-1-9
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-centos-e2e-integration-test-release-1-9
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-ubuntu-e2e-integration-test-release-1-9
branches:
- release-1.9
agent: jenkins
always_run: false
optional: false
- name: metal3-centos-e2e-feature-test-release-1-9-pivoting
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-centos-e2e-feature-test-release-1-9-remediation
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-centos-e2e-feature-test-release-1-9-features
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-ubuntu-e2e-feature-test-release-1-9-pivoting
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-ubuntu-e2e-feature-test-release-1-9-remediation
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-ubuntu-e2e-feature-test-release-1-9-features
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-e2e-clusterctl-upgrade-test-release-1-9
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true
- name: metal3-e2e-1-29-1-30-upgrade-test-release-1-9
branches:
- release-1.9
agent: jenkins
always_run: false
optional: true

0 comments on commit 4376e3e

Please sign in to comment.