-
Notifications
You must be signed in to change notification settings - Fork 0
219 lines (185 loc) · 5.87 KB
/
build.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
name: RPM Build
on: push
jobs:
build-naemon-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build Naemon core packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "naemon-core.spec"
additional_repos: '["epel-release"]'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Naemon Core RPMs
path: ${{ steps.build.outputs.rpm_dir_path }}
build-naemon:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build Naemon packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "naemon.spec"
additional_repos: '["epel-release"]'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Naemon RPMs
path: ${{ steps.build.outputs.rpm_dir_path }}
build-naemon-livestatus:
runs-on: ubuntu-latest
needs: build-naemon-core
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: Naemon Core RPMs
- name: build Naemon Livestatus packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "naemon-livestatus.spec"
additional_repos: '["epel-release", "/github/workspace/x86_64/libnaemon-1.4.2-0.x86_64.rpm", "/github/workspace/x86_64/naemon-devel-1.4.2-0.x86_64.rpm"]'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Naemon Livestatus RPMs
path: ${{ steps.build.outputs.rpm_dir_path }}
build-naemon-vimvault:
runs-on: ubuntu-latest
needs: build-naemon-core
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: Naemon Core RPMs
- name: build Naemon Vimvault packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "naemon-vimvault.spec"
additional_repos: '["epel-release", "/github/workspace/x86_64/libnaemon-1.4.2-0.x86_64.rpm", "/github/workspace/x86_64/naemon-devel-1.4.2-0.x86_64.rpm"]'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Naemon Vimvault RPMs
path: ${{ steps.build.outputs.rpm_dir_path }}
build-merlin:
runs-on: ubuntu-latest
needs: build-naemon-core
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: Naemon Core RPMs
- name: build Merlin packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "merlin.spec"
additional_repos: '["epel-release", "/github/workspace/x86_64/libnaemon-1.4.2-0.x86_64.rpm", "/github/workspace/x86_64/naemon-devel-1.4.2-0.x86_64.rpm"]'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Merlin RPMs
path: ${{ steps.build.outputs.rpm_dir_path }}
build-libthruk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build Libthruk packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "libthruk.spec"
additional_repos: '["epel-release"]'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Libthruk RPMs
path: ${{ steps.build.outputs.rpm_dir_path }}
build-thruk:
runs-on: ubuntu-latest
needs: build-libthruk
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: Libthruk RPMs
- name: build Thruk packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "thruk.spec"
additional_repos: '["epel-release", "/github/workspace/x86_64/libthruk-3.00-0.x86_64.rpm"]'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Thruk RPMs
path: ${{ steps.build.outputs.rpm_dir_path }}
# build-pnp4nagios:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Install dependencies
# run: sudo apt-get install -y rrdtool librrd-dev librrds-perl php-gd php-xml php-mbstring
#
# - name: build PNP4Nagios packages
# id: build
# uses: UCBoulder/oit-sepe-rpmbuild@master
# with:
# spec_file: "pnp4nagios.spec"
# additional_repos: '["epel-release"]'
#
# - name: Upload artifact
# uses: actions/upload-artifact@v4
# with:
# name: PNP4Nagios RPMs
# path: ${{ steps.build.outputs.rpm_dir_path }}
fetch-pnp4nagios:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Fetch PNP4Nagios RPM
run: curl -L -o pnp4nagios-0.6.27-5.alma.el8.x86_64.rpm https://github.com/pnp4nagios/pnp4nagios/releases/download/v0.6.27-5/pnp4nagios-0.6.27-5.alma.el8.x86_64.rpm
- name: debugging
run: |
if [ ! -f pnp4nagios-0.6.27-5.alma.el8.x86_64.rpm ]; then
echo "Failed to download the PNP4Nagios RPM"
exit 1
else
echo "PNP4Nagios RPM fetched successfully"
fi
- name: List files in the current directory
run: ls -la
- name: Upload PNP4Nagios RPM as artifact
uses: actions/upload-artifact@v4
with:
name: PNP4Nagios RPMs
path: ./pnp4nagios-0.6.27-5.alma.el8.x86_64.rpm
if-no-files-found: error # This ensures it fails if the file isn't found
publish-rpms:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
needs:
- build-naemon-core
- build-naemon
- build-naemon-livestatus
- build-naemon-vimvault
- build-libthruk
- build-thruk
- build-merlin
- fetch-pnp4nagios
steps:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- uses: ncipollo/release-action@v1
with:
artifacts: 'x86_64/*,noarch/*'