-
Notifications
You must be signed in to change notification settings - Fork 18
203 lines (183 loc) · 7.97 KB
/
repoclosure.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
---
name: Check repository closure
permissions:
issues: write
pull-requests: read
contents: read
on:
workflow_dispatch:
schedule:
# Running every Monday
- cron: '0 6 * * 1'
jobs:
copr-ovirt-master-snapshot-el8:
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream8
steps:
- name: Enable repositories
run: |
rpm --import https://download.copr.fedorainfracloud.org/results/ovirt/ovirt-master-snapshot/pubkey.gpg
dnf distro-sync -y
dnf --repofrompath=ovirt-master-snapshot,https://download.copr.fedorainfracloud.org/results/ovirt/ovirt-master-snapshot/centos-stream-8-x86_64/ install -y ovirt-release-master
- name: Enable required modules
run: |
dnf module enable -y javapackages-tools:201801
dnf module enable -y maven:3.5
dnf module enable -y pki-deps:10.6
dnf module enable -y postgresql:12
dnf module enable -y mod_auth_openidc:2.3
dnf module enable -y ruby:3.0
- name: Run repoclosure on oVirt Master Snapshot from COPR
run: |
dnf repoclosure --newest --refresh \
--check copr:copr.fedorainfracloud.org:ovirt:ovirt-master-snapshot \
--repo appstream \
--repo baseos \
--repo extras \
--repo ovirt-master-centos-opstools-testing \
--repo ovirt-master-centos-stream-ceph-pacific \
--repo ovirt-master-centos-stream-gluster10-testing \
--repo ovirt-master-centos-stream-nfv-openvswitch2-testing \
--repo ovirt-master-centos-stream-openstack-yoga-testing \
--repo ovirt-master-centos-stream-ovirt45-testing \
--repo ovirt-master-copr:copr.fedorainfracloud.org:sac:gluster-ansible \
--repo ovirt-master-virtio-win-latest \
--repo powertools
copr-ovirt-master-snapshot-el9:
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream9
steps:
- name: Enable repositories
run: |
dnf distro-sync -y
dnf install -y 'dnf-command(copr)'
dnf copr enable -y ovirt/ovirt-master-snapshot centos-stream-9
dnf install -y ovirt-release-master
- name: Run repoclosure on oVirt Master Snapshot from COPR
run: |
dnf repoclosure --newest --refresh \
--check copr:copr.fedorainfracloud.org:ovirt:ovirt-master-snapshot \
--repo appstream \
--repo baseos \
--repo resilientstorage \
--repo crb \
--repo ovirt-master-centos-stream-ceph-pacific-testing \
--repo ovirt-master-centos-stream-gluster10-testing \
--repo ovirt-master-centos-stream-nfv-openvswitch2-testing \
--repo ovirt-master-centos-stream-openstack-yoga-testing \
--repo ovirt-master-centos-stream-opstools-collectd5-testing \
--repo ovirt-master-centos-stream-ovirt45-testing
centos-release-ovirt45-el8:
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream8
steps:
- name: Enable repositories
run: |
dnf distro-sync -y
dnf --repofrompath=extras-common-testing,https://buildlogs.centos.org/centos/8-stream/extras/x86_64/extras-common/ install -y --nogpgcheck centos-release-ovirt45-testing
dnf config-manager --set-enabled centos-ovirt45-testing
dnf config-manager --set-enabled ovirt-45-upstream-testing
- name: Enable required modules
run: |
dnf module enable -y javapackages-tools:201801
dnf module enable -y maven:3.5
dnf module enable -y pki-deps:10.6
dnf module enable -y postgresql:12
dnf module enable -y mod_auth_openidc:2.3
dnf module enable -y ruby:3.0
- name: Run repoclosure on CentOS Virtualization SIG - oVirt 45 - testing
run: |
dnf repoclosure --newest --refresh \
--repo centos-ovirt45 \
--check centos-ovirt45-testing \
--repo ovirt-45-upstream \
--check ovirt-45-upstream-testing \
--repo appstream \
--repo baseos \
--repo extras \
--repo powertools \
--repo centos-ceph-pacific \
--repo centos-nfv-openvswitch \
--repo centos-opstools \
--repo centos-gluster10 \
--repo ovirt-45-centos-stream-openstack-yoga
centos-release-ovirt45-el9:
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream9
steps:
- name: Enable repositories
run: |
dnf distro-sync -y
dnf --repofrompath=extras-common-testing,https://buildlogs.centos.org/centos/9-stream/extras/x86_64/extras-common/ install -y --nogpgcheck centos-release-ovirt45-testing
dnf config-manager --set-enabled centos-ovirt45-testing
dnf config-manager --set-enabled ovirt-45-upstream-testing
- name: Run repoclosure on CentOS Virtualization SIG - oVirt 45 - testing
run: |
dnf repoclosure --newest --refresh \
--repo centos-ovirt45 \
--check centos-ovirt45-testing \
--repo ovirt-45-upstream \
--check ovirt-45-upstream-testing \
--repo appstream \
--repo baseos \
--repo resilientstorage \
--repo crb \
--repo centos-ceph-pacific \
--repo centos-gluster10-test \
--repo centos-nfv-openvswitch \
--repo centos-opstools \
--repo centos-openstack-yoga
close-issue-on-success:
name: Report workflow success
runs-on: ubuntu-latest
needs:
- copr-ovirt-master-snapshot-el8
- copr-ovirt-master-snapshot-el9
- centos-release-ovirt45-el8
- centos-release-ovirt45-el9
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add a comment about successful job and close issue
run: |
set -e
LABEL="repoclosure-failed"
ISSUENO=$(gh issue list -l $LABEL | awk ' { print $1 } ' | head -n 1)
if [ -n "$ISSUENO" ]; then
MESSAGE="✅ The repoclosure CI job is now [successful](https://github.com/oVirt/ovirt-release/actions/runs/${{ github.run_id }}), closing issue."
gh issue comment "${ISSUENO}" --body "${MESSAGE}"
gh issue close "${ISSUENO}"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
open-issue-on-failure:
name: Report workflow failure
runs-on: ubuntu-latest
if: ${{ always() && (needs.copr-ovirt-master-snapshot-el8.result=='failure' || needs.centos-release-ovirt45-el8.result=='failure' || needs.copr-ovirt-master-snapshot-el9.result=='failure' || needs.centos-release-ovirt45-el9.result=='failure') }}
needs:
- copr-ovirt-master-snapshot-el8
- copr-ovirt-master-snapshot-el9
- centos-release-ovirt45-el8
- centos-release-ovirt45-el9
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add a comment about failed job
run: |
set -e
TITLE="Failed repoclosure job"
LABEL="repoclosure-failed"
ISSUENO=$(gh issue list -l $LABEL | awk ' { print $1 } ' | head -n 1)
if [ -z "$ISSUENO" ]; then
MESSAGE="❌ The repoclosure CI job failed. [Please investigate.](https://github.com/oVirt/ovirt-release/actions/runs/${{ github.run_id }})"
gh issue create --title "${TITLE}" --body "${MESSAGE}" --label "${LABEL}"
else
MESSAGE="❌ The repoclosure CI job is still failing. [Please investigate.](https://github.com/oVirt/ovirt-release/actions/runs/${{ github.run_id }})"
gh issue comment "${ISSUENO}" --body "${MESSAGE}"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}