-
Notifications
You must be signed in to change notification settings - Fork 5
316 lines (275 loc) · 9.47 KB
/
cd.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
name: CD
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
packages: read
jobs:
check-release-needed:
# Note that `workflow_dispatch` is never skipped
if: "!(contains(github.event.head_commit.message, '[cd skip]') || contains(github.event.head_commit.message, '[skip cd]'))"
runs-on: ubuntu-latest
steps:
- name: nop
run: true
build-linux:
needs: [ check-release-needed ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install fpm and build dependencies
run: |
sudo apt install -y rubygems libarchive-tools rpm zstd
sudo gem install --no-document fpm
- name: Build packages
run: make dist/generic dist/apk dist/deb dist/rpm dist/pacman
- name: Upload built package
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/mommy*
build-macos:
needs: [ check-release-needed ]
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install fpm
run: sudo gem install --no-document fpm
- name: Build package
run: make dist/osxpkg
- name: Upload built package
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/mommy*
build-freebsd:
needs: [ check-release-needed ]
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install fpm && Build package
uses: vmactions/freebsd-vm@v0
with:
usesh: true
prepare: |
echo "::group::Install basic packages"
pkg install -y git gmake || exit 1
echo "::endgroup::"
# fpm
echo "::group::Install fpm: Actually install fpm"
pkg install -y devel/ruby-gems || exit 1
gem install --no-document fpm || exit 1
echo "::endgroup::"
echo "::group::Install fpm: Install gtar (workaround for https://github.com/jordansissel/fpm/pull/1922)"
pkg install -y gtar || exit 1
mv /usr/bin/tar /usr/bin/bsdtar || exit 1
mv /usr/local/bin/gtar /usr/bin/tar || exit 1
echo "::endgroup::"
# /fpm
echo "::group::Ignore ownership issues"
git config --global --add safe.directory "$GITHUB_WORKSPACE" || exit 1
echo "::endgroup::"
run: |
set -e
gmake dist/freebsd
- name: Upload built package
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/mommy*
build-netbsd:
needs: [ check-release-needed ]
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install fpm && Build package
uses: vmactions/netbsd-vm@v0
with:
usesh: true
prepare: |
set -e
echo "::group::Install basic packages"
pkg_add git gmake || exit 1
echo "::endgroup::"
echo "::group::Install fpm"
pkg_add ruby
/usr/pkg/bin/gem* install --no-document fpm
pkg_add pkg_install # This is necessary to make `fpm` work with `pkgin` format for some reason
echo "::endgroup::"
echo "::group::Ignore ownership issues"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
echo "::endgroup::"
run: |
set -e
export PATH="/usr/sbin:$PATH" # Add `pkg_*` commands to path
gmake dist/netbsd
- name: Upload built package
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/mommy*
build-openbsd:
needs: [ check-release-needed ]
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install fpm && Build package
uses: vmactions/openbsd-vm@v0
with:
usesh: true
prepare: |
set -e
echo "::group::Install basic packages"
pkg_add git gmake
echo "::endgroup::"
echo "::group::Install fpm"
pkg_add "$(pkg_info -Q ruby | grep "^ruby-[0-9]" | tail -n 1)"
/usr/local/bin/gem* install --no-document fpm
ln -s /usr/local/bin/fpm* /usr/local/bin/fpm # Symlink `fpm` to latest version
echo "::endgroup::"
echo "::group::Ignore ownership issues"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
echo "::endgroup::"
run: |
set -e
gmake dist/openbsd
- name: Upload built package
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/mommy*
release-mommy:
needs: [ build-linux, build-macos, build-freebsd, build-netbsd, build-openbsd ]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name != 'workflow_dispatch'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download built packages
uses: actions/download-artifact@v3
with:
name: dist
- name: Extract version number
run: echo "MOMMY_VERSION=v$(head -n 1 ./version)" >> $GITHUB_ENV
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v1
with:
release_notes_file: RELEASE_NOTES.md
- name: Checkout release
uses: softprops/action-gh-release@v1
with:
draft: false
prerelease: false
tag_name: ${{ env.MOMMY_VERSION }}
body_path: RELEASE_NOTES.md
files: mommy*
release-aur:
needs: [ release-mommy ]
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- name: Set up basic system
run: |
echo "::group::Update system"
pacman -Syu --noconfirm
echo "::endgroup::"
echo "::group::Install basic packages"
pacman -S --noconfirm --needed git base-devel
echo "::endgroup::"
echo "::group::Add non-privileged user to run makepkg"
useradd -m build
echo "build ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers
echo "::endgroup::"
- name: Checkout mommy
uses: actions/checkout@v3
with:
path: mommy
token: ${{ secrets.personal_access_token }}
- name: Extract version number
run: echo "MOMMY_VERSION=v$(head -n 1 ./mommy/version)" >> $GITHUB_ENV
- name: Checkout aur-mommy
uses: actions/checkout@v3
with:
repository: FWDekker/aur-mommy
path: aur-mommy
ref: master
fetch-depth: 0
# Required to trigger CI action when pushed
token: ${{ secrets.personal_access_token }}
- name: Fix aur-mommy directory ownership
run: chown -R build:build ./aur-mommy/
- name: Update build files
working-directory: ./aur-mommy/
run: |
echo "::group::Fast-forward main"
sudo -u build git checkout dev
sudo -u build git checkout master
sudo -u build git merge --commit dev
echo "::endgroup::"
echo "::group::Update build files"
sudo -u build ./update.sh "$MOMMY_VERSION"
echo "::endgroup::"
echo "::group::Commit update"
sudo -u build git config --global user.name "FWDekkerBot"
sudo -u build git config --global user.email "[email protected]"
sudo -u build git commit -am "🔖 mommy updated the build files to mommy $MOMMY_VERSION~"
echo "::endgroup::"
echo "::group::Fast-forward dev"
sudo -u build git checkout dev
sudo -u build git merge --commit master
echo "::endgroup::"
echo "::group::Push changes"
sudo -u build git push origin master dev
echo "::endgroup::"
release-homebrew:
needs: [ release-mommy ]
runs-on: ubuntu-latest
steps:
- name: Checkout mommy
uses: actions/checkout@v3
with:
path: mommy
token: ${{ secrets.personal_access_token }}
- name: Extract version number
run: echo "MOMMY_VERSION=v$(head -n 1 ./mommy/version)" >> $GITHUB_ENV
- name: Checkout homebrew-mommy
uses: actions/checkout@v3
with:
repository: FWDekker/homebrew-mommy
path: homebrew-mommy
ref: main
fetch-depth: 0
# Required to trigger CI action when pushed
token: ${{ secrets.personal_access_token }}
- name: Update formula
working-directory: ./homebrew-mommy/
run: |
echo "::group::Fast-forward main"
git checkout dev
git checkout main
git merge --commit dev
echo "::endgroup::"
echo "::group::Update formula"
./update.sh "$MOMMY_VERSION"
echo "::endgroup::"
echo "::group::Commit update"
git config --global user.name "FWDekkerBot"
git config --global user.email "[email protected]"
git commit -am "🔖 mommy updated the formula to mommy $MOMMY_VERSION~"
echo "::endgroup::"
echo "::group::Fast-forward dev"
git checkout dev
git merge --commit main
echo "::endgroup::"
echo "::group::Push changes"
git push origin main dev
echo "::endgroup::"