-
Notifications
You must be signed in to change notification settings - Fork 5
598 lines (500 loc) · 18.3 KB
/
ci.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
name: 🧪 ci~
on:
push:
paths-ignore:
- 'README.md'
- 'SECURITY.md'
- '.github/img/**'
pull_request:
paths-ignore:
- 'README.md'
- 'SECURITY.md'
- '.github/img/**'
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- name: Install dependencies for mommy
run: |
echo "::group::Install ShellSpec"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
sudo make -C /tmp/shellspec/ install
rm -rf /tmp/shellspec
echo "::endgroup::"
echo "::group::Install additional shells"
sudo apt-get install fish zsh
touch "$HOME/.zshrc"
echo "::endgroup::"
- name: Checkout
uses: actions/checkout@v4
- name: Test script
run: make test
- name: Install fpm and build dependencies
run: |
sudo apt-get install -y rubygems libarchive-tools rpm zstd
sudo gem install --no-document fpm
- name: Test fpm package
run: |
echo "::group::Build"
make dist/deb
echo "::endgroup::"
echo "::group::Install"
sudo apt-get install -y ./dist/mommy-*.deb
echo "::endgroup::"
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
sudo apt-get purge -y mommy
echo "::endgroup::"
- name: Install Homebrew
run: |
NONINTERACTIVE=1 \
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- name: Checkout homebrew-mommy
uses: actions/checkout@v4
with:
repository: FWDekker/homebrew-mommy
path: homebrew-mommy
ref: dev
- name: Patch homebrew-mommy
working-directory: homebrew-mommy
env:
RELEVANT_URL: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
RELEVANT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
# Point the formula to the commit that is being tested in this workflow
sed -i -e "s|head \(.*\), branch: .*|head \"https://github.com/$RELEVANT_URL.git\", revision: \"$RELEVANT_SHA\"|g" mommy.rb
git -c user.name="ignore" -c user.email="ignore" commit -am "ignore"
- name: Test Homebrew package
run: |
echo "::group::Enable Homebrew"
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
mkdir -p "$HOME/.config/fish/"; echo "set -gx fish_complete_path \$fish_complete_path $(brew --prefix)/share/fish/vendor_completions.d/" >> "$HOME/.config/fish/config.fish"
echo "FPATH=\"$(brew --prefix)/share/zsh/site-functions/:\$FPATH\"" >> "$HOME/.zshrc"
echo "::endgroup::"
echo "::group::Install"
brew tap local/mommy "$(pwd)/homebrew-mommy"
brew install mommy --HEAD
echo "::endgroup::"
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
brew uninstall mommy
brew untap local/mommy
echo "::endgroup::"
test-archlinux:
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: Install dependencies for mommy
run: |
echo "::group::Install man-db"
pacman -S --noconfirm man-db
sed -i "/NoExtract.*man/d" /etc/pacman.conf # Extract man pages
echo "::endgroup::"
echo "::group::Install ShellSpec"
git clone https://aur.archlinux.org/shellspec-git.git /tmp/shellspec-git
chown -R build:build /tmp/shellspec-git
cd /tmp/shellspec-git
sudo -u build makepkg -si --noconfirm
rm -rf /tmp/shellspec-git
cd -
echo "::endgroup::"
echo "::group::Install additional shells"
pacman -S --noconfirm fish zsh
echo "::endgroup::"
- name: Checkout mommy
uses: actions/checkout@v4
with:
path: mommy
- name: Fix mommy directory ownership
run: chown -R build:build ./mommy/
- name: Test script
working-directory: ./mommy/
run: make test
- name: Install fpm
run: |
pacman -S --noconfirm ruby
gem install --no-document fpm erb
ln -s "$HOME/.local/share/gem/ruby/"*"/bin/fpm" /usr/local/bin/fpm # Symlink 'fpm' to latest version
- name: Test fpm package
working-directory: ./mommy/
run: |
echo "::group::Build"
make dist/pacman
echo "::endgroup::"
echo "::group::Install"
pacman -U --noconfirm ./dist/mommy*.pacman
echo "::endgroup::"
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
pacman -R --noconfirm mommy
echo "::endgroup::"
- name: Checkout aur-mommy
uses: actions/checkout@v4
with:
repository: FWDekker/aur-mommy
path: aur-mommy
ref: dev
- name: Fix aur-mommy directory ownership
run: chown -R build:build ./aur-mommy/
- name: Test AUR package
working-directory: ./aur-mommy/
env:
RELEVANT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
echo "::group::Patch"
sudo -u build ./update.sh "$RELEVANT_SHA"
echo "::endgroup::"
echo "::group::Build and install"
sudo -u build makepkg -si --noconfirm
echo "::endgroup::"
cd ../mommy/
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
pacman -R --noconfirm mommy
echo "::endgroup::"
test-fedora:
runs-on: ubuntu-latest
container: fedora:latest
steps:
- name: Set up basic system
run: |
echo "::group::Update system"
dnf -y update
echo "::endgroup::"
echo "::group::Install basic packages"
dnf -y install git make rpm-build
echo "::endgroup::"
- name: Install dependencies for mommy
run: |
echo "::group::Install man-db"
dnf -y install man-db
sed -i "/nodocs/d" /etc/dnf/dnf.conf # Extract man pages
echo "::endgroup::"
echo "::group::Install ShellSpec"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
make -C /tmp/shellspec install
rm -rf /tmp/shellspec
echo "::endgroup::"
echo "::group::Install additional shells"
dnf -y install fish zsh
echo "::endgroup::"
- name: Checkout mommy
uses: actions/checkout@v4
with:
# Checkout to subdirectory is required for 'pkg/rpkg/rpkg.conf' to correctly determine '${git_props:root}'
path: mommy
- name: Test script
working-directory: ./mommy/
run: make test
- name: Install fpm
run: |
dnf -y install rubygems
gem install --no-document fpm
- name: Test fpm package
working-directory: ./mommy/
run: |
echo "::group::Build"
make dist/rpm
echo "::endgroup::"
echo "::group::Install"
dnf -y install ./dist/mommy*.rpm
echo "::endgroup::"
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
dnf -y remove mommy
echo "::endgroup::"
- name: Install rpkg
run: dnf -y install rpkg
- name: Test SRPM package
working-directory: ./mommy/
run: |
echo "::group::Build"
rpkg -p ./pkg/rpkg local # build srpm
rpmbuild --rebuild /tmp/rpkg/mommy-*/*.rpm
echo "::endgroup::"
echo "::group::Install"
dnf -y install "$HOME"/rpmbuild/RPMS/*/*.rpm
echo "::endgroup::"
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
dnf -y remove mommy
echo "::endgroup::"
test-macos:
runs-on: macos-12 # fish tests don't seem to work well in macos 14~
steps:
- name: Install dependencies for mommy
run: |
echo "::group::Install ShellSpec"
brew tap shellspec/shellspec
brew install shellspec
echo "::endgroup::"
echo "::group::Install additional shells"
brew install fish
echo "::endgroup::"
- name: Checkout
uses: actions/checkout@v4
- name: Test script
run: make test
- name: Install fpm
run: sudo gem install --no-document fpm
- name: Test fpm package
run: |
echo "::group::Build"
make dist/osxpkg
echo "::endgroup::"
echo "::group::Install"
sudo installer -pkg ./dist/mommy*+osx.pkg -target /
echo "::endgroup::"
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
sudo make uninstall/osxpkg
echo "::endgroup::"
- name: Checkout homebrew-mommy
uses: actions/checkout@v4
with:
repository: FWDekker/homebrew-mommy
path: homebrew-mommy
ref: dev
- name: Patch homebrew-mommy
working-directory: homebrew-mommy
env:
RELEVANT_URL: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
RELEVANT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
# Point the formula to the commit that is being tested in this workflow
sed -i -e "s|head \(.*\), branch: .*|head \"https://github.com/$RELEVANT_URL.git\", revision: \"$RELEVANT_SHA\"|g" mommy.rb
git -c user.name="ignore" -c user.email="ignore" commit -am "ignore"
- name: Test Homebrew package
run: |
echo "::group::Enable Homebrew"
mkdir -p "$HOME/.config/fish/"; echo "set -gx fish_complete_path \$fish_complete_path $(brew --prefix)/share/fish/vendor_completions.d/" >> "$HOME/.config/fish/config.fish"
echo "FPATH=\"$(brew --prefix)/share/zsh/site-functions/:\$FPATH\"" >> "$HOME/.zshrc"
echo "::endgroup::"
echo "::group::Install"
brew tap local/mommy "$(pwd)/homebrew-mommy"
brew install mommy --HEAD
echo "::endgroup::"
echo "::group::Test"
MOMMY_SYSTEM=1 make test
echo "::endgroup::"
echo "::group::Uninstall"
brew uninstall mommy
brew untap local/mommy
echo "::endgroup::"
test-freebsd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test script and package
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
set -e
echo "::group::Install basic packages"
pkg install -y git gmake
echo "::endgroup::"
echo "::group::Install ShellSpec"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
gmake -C /tmp/shellspec install
rm -rf /tmp/shellspec
echo "::endgroup::"
echo "::group::Install additional shells"
pkg install -y fish zsh
echo "::endgroup::"
# fpm
echo "::group::Install fpm: Actually install fpm"
pkg install -y devel/ruby-gems
gem install --no-document fpm
echo "::endgroup::"
echo "::group::Install fpm: Install gtar (workaround for https://github.com/jordansissel/fpm/pull/1922)"
pkg install -y gtar
mv /usr/bin/tar /usr/bin/bsdtar
mv /usr/local/bin/gtar /usr/bin/tar
echo "::endgroup::"
# /fpm
echo "::group::Ignore ownership issues"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
echo "::endgroup::"
run: |
set -e
echo "::group::Test script"
gmake test
echo "::endgroup::"
echo "::group::Build package"
gmake dist/freebsd
echo "::endgroup::"
echo "::group::Install package"
pkg add ./dist/mommy-*.freebsd
echo "::endgroup::"
echo "::group::Test package"
MOMMY_SYSTEM=1 gmake test
echo "::endgroup::"
echo "::group::Uninstall package"
pkg delete -y mommy
echo "::endgroup::"
test-netbsd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test script and package
uses: cross-platform-actions/[email protected]
with:
operating_system: netbsd
version: "10.0"
run: |
set -e
export PATH="/usr/sbin:$PATH" # Add 'pkg_*' commands to path
export MOMMY_ZSH_SKIP=1 # zsh completion capturing totally does not work~
echo "::group::Install basic packages"
sudo pkgin -y in git gmake mozilla-rootcerts-openssl
echo "::endgroup::"
echo "::group::Install ShellSpec"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec/
sudo gmake -C /tmp/shellspec/ install
rm -rf /tmp/shellspec
echo "::endgroup::"
echo "::group::Install additional shells"
sudo pkgin -y in fish zsh
touch "$HOME/.zshrc"
echo "::endgroup::"
echo "::group::Ignore ownership issues"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
echo "::endgroup::"
echo "::group::Test script"
gmake test
echo "::endgroup::"
echo "::group::Build package"
gmake dist/netbsd
echo "::endgroup::"
echo "::group::Install package"
sudo pkg_add ./dist/mommy-*+netbsd.tgz
echo "::endgroup::"
echo "::group::Test package"
MOMMY_SYSTEM=1 gmake test
echo "::endgroup::"
echo "::group::Uninstall package"
sudo pkg_delete mommy
echo "::endgroup::"
test-openbsd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies for mommy && Test script && Build package && Test package
uses: vmactions/openbsd-vm@v1
with:
usesh: true
prepare: |
set -e
echo "::group::Install basic packages"
pkg_add git gmake
echo "::endgroup::"
echo "::group::Install ShellSpec"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
gmake -C /tmp/shellspec install
rm -rf /tmp/shellspec
echo "::endgroup::"
echo "::group::Install additional shells"
pkg_add fish zsh
touch "$HOME/.zshrc"
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 "$(echo /usr/local/bin/fpm* | tr ' ' \\n | grep -E '[0-9]+$')" /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
export MOMMY_ZSH_SKIP=1 # 'script' does not have the '-q' option in OpenBSD
echo "::group::Test script"
gmake test
echo "::endgroup::"
echo "::group::Build package"
gmake dist/openbsd
echo "::endgroup::"
echo "::group::Install package"
pkg_add -D unsigned ./dist/mommy-*+openbsd.tgz
echo "::endgroup::"
echo "::group::Test package"
MOMMY_SYSTEM=1 gmake test # Zsh completion tests do not work in OpenBSD
echo "::endgroup::"
echo "::group::Uninstall package"
pkg_delete mommy
echo "::endgroup::"
test-windows:
runs-on: windows-latest
steps:
- name: Set up msys2
uses: msys2/setup-msys2@v2
with:
update: true
# Install basic package && Install additional shells
install: git make fish zsh
- name: Install dependencies for mommy
shell: msys2 {0}
run: |
echo "::group::Install ShellSpec"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
make -C /tmp/shellspec install
rm -rf /tmp/shellspec
echo "::endgroup::"
echo "::group::Post-install additional shells"
touch "$HOME/.zshrc"
echo "::endgroup::"
- name: Checkout
uses: actions/checkout@v4
- name: Test script
shell: msys2 {0}
run: make test
- name: Install mommy
shell: msys2 {0}
run: make install
- name: Test installed mommy
shell: msys2 {0}
run: MOMMY_SYSTEM=1 make test
test-nixpkgs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable nix
uses: DeterminateSystems/nix-installer-action@main
- name: Enable cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build
run: |
nix build \
--impure \
--expr '(import <nixpkgs> {}).mommy.overrideAttrs (prev: { src = ./.; })'