mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
ci: exclude branches from the testing matrix for ok-to-test
comments
It seems that `matrix.*` parameters can not be used in the if-statement for a job. Now using the `exclude:` parameter with a more dynamically constructed value for the branch. If the value for the branch is not part of the initial branch list, the value will not be excluded, so the jobs are expected to run. Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
parent
a57fe08e7d
commit
2d120f2e10
21
.github/workflows/pull-request-commentor.yaml
vendored
21
.github/workflows/pull-request-commentor.yaml
vendored
@ -21,19 +21,30 @@ jobs:
|
|||||||
branch: [release-v3.8, release-v3.9, devel]
|
branch: [release-v3.8, release-v3.9, devel]
|
||||||
k8s: ["1.25", "1.26", "1.27", "1.28"]
|
k8s: ["1.25", "1.26", "1.27", "1.28"]
|
||||||
exclude:
|
exclude:
|
||||||
|
# The exclude items below are dynamically constructed. If the
|
||||||
|
# base_ref matches the given branch, it will be excluded from the
|
||||||
|
# test matrix.
|
||||||
|
|
||||||
# the next Ceph-CSI version will not be tested with old Kubernetes
|
# the next Ceph-CSI version will not be tested with old Kubernetes
|
||||||
- k8s: "1.25"
|
- k8s: "1.25"
|
||||||
branch: devel
|
branch: >
|
||||||
|
${{ "devel" == github.base_ref
|
||||||
|
&& github.base_ref || "no-exclude" }}
|
||||||
|
|
||||||
# Ceph-CSI <= 3.9 was released before Kubernetes 1.28
|
# Ceph-CSI <= 3.9 was released before Kubernetes 1.28
|
||||||
- k8s: "1.28"
|
- k8s: "1.28"
|
||||||
branch: release-v3.8
|
branch: >
|
||||||
|
${{ "release-v3.8" == github.base_ref
|
||||||
|
&& github.base_ref || "no-exclude" }}
|
||||||
- k8s: "1.28"
|
- k8s: "1.28"
|
||||||
branch: release-v3.9
|
branch: >
|
||||||
|
${{ "release-v3.9" == github.base_ref
|
||||||
|
&& github.base_ref || "no-exclude" }}
|
||||||
|
|
||||||
|
# watch out, matrix.branch can not be used in this if-statement :-/
|
||||||
if: >
|
if: >
|
||||||
(github.event.label.name == 'ok-to-test' &&
|
(github.event.label.name == 'ok-to-test' &&
|
||||||
github.event.pull_request.merged != true &&
|
github.event.pull_request.merged != true)
|
||||||
github.base_ref == matrix.branch)
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: >
|
- name: >
|
||||||
|
Loading…
Reference in New Issue
Block a user