-
Notifications
You must be signed in to change notification settings - Fork 17
717 lines (599 loc) · 23.2 KB
/
Copy pathci.yml
File metadata and controls
717 lines (599 loc) · 23.2 KB
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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
name: 🧪 ci~
on:
push:
paths-ignore:
- ".github/img/**"
- "CONTRIBUTING.md"
- "README.md"
- "SECURITY.md"
pull_request:
paths-ignore:
- ".github/img/**"
- "CONTRIBUTING.md"
- "README.md"
- "SECURITY.md"
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- name: Install dependencies for mommy
run: |
printf "::group::Install ShellSpec\n"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
sudo make -C /tmp/shellspec/ install
rm -rf /tmp/shellspec
printf "::endgroup::\n"
printf "::group::Install additional shells\n"
sudo apt-get install fish zsh
touch "$HOME/.zshrc"
printf "::endgroup::\n"
- name: Checkout
uses: actions/checkout@v6
- 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: |
printf "::group::Build\n"
make dist/deb
printf "::endgroup::\n"
printf "::group::Install\n"
sudo apt-get install -y ./dist/mommy-*.deb
printf "::endgroup::\n"
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
sudo apt-get purge -y mommy
printf "::endgroup::\n"
- 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@v6
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: |
printf "::group::Enable Homebrew\n"
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
mkdir -p "$HOME/.config/fish/"; printf "set -p fish_complete_path \"%s/share/fish/vendor_completions.d/\"\n" "$(brew --prefix)" >> "$HOME/.config/fish/config.fish"
printf "FPATH=\"%s/share/zsh/site-functions/:\$FPATH\"\n" "$(brew --prefix)" >> "$HOME/.zshrc"
printf "::endgroup::\n"
printf "::group::Install\n"
brew tap local/mommy "$(pwd)/homebrew-mommy"
brew install mommy --HEAD
printf "::endgroup::\n"
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
brew uninstall mommy
brew untap local/mommy
printf "::endgroup::\n"
test-archlinux:
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- name: Set up basic system
run: |
printf "::group::Update system\n"
pacman -Syu --noconfirm
printf "::endgroup::\n"
printf "::group::Install basic packages\n"
pacman -S --noconfirm --needed git base-devel
printf "::endgroup::\n"
printf "::group::Add non-privileged user to run makepkg\n"
useradd -m build
printf "build ALL=(ALL:ALL) NOPASSWD: ALL\n" >> /etc/sudoers
printf "::endgroup::\n"
- name: Install dependencies for mommy
run: |
printf "::group::Install man-db\n"
pacman -S --noconfirm man-db
sed -i "/NoExtract.*man/d" /etc/pacman.conf # Extract man pages
printf "::endgroup::\n"
printf "::group::Install ShellSpec\n"
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 -
printf "::endgroup::\n"
printf "::group::Install additional shells\n"
pacman -S --noconfirm fish zsh
touch "$HOME/.zshrc"
printf "::endgroup::\n"
- name: Checkout mommy
uses: actions/checkout@v6
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: |
printf "::group::Build\n"
make dist/pacman
printf "::endgroup::\n"
printf "::group::Install\n"
pacman -U --noconfirm ./dist/mommy*.pacman
printf "::endgroup::\n"
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
pacman -R --noconfirm mommy
printf "::endgroup::\n"
- name: Checkout aur-mommy
uses: actions/checkout@v6
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: |
printf "::group::Patch\n"
sudo -u build ./update.sh "$RELEVANT_SHA"
printf "::endgroup::\n"
printf "::group::Build and install\n"
sudo -u build makepkg -si --noconfirm
printf "::endgroup::\n"
cd ../mommy/
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
pacman -R --noconfirm mommy
printf "::endgroup::\n"
test-fedora:
runs-on: ubuntu-latest
container: fedora:latest
steps:
- name: Set up basic system
run: |
printf "::group::Update system\n"
dnf -y update
printf "::endgroup::\n"
printf "::group::Install basic packages\n"
dnf -y install git make rpm-build util-linux-script
printf "::endgroup::\n"
- name: Install dependencies for mommy
run: |
printf "::group::Install man-db\n"
dnf -y install man-db
sed -i "/nodocs/d" /etc/dnf/dnf.conf # Extract man pages
printf "::endgroup::\n"
printf "::group::Install ShellSpec\n"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
make -C /tmp/shellspec install
rm -rf /tmp/shellspec
printf "::endgroup::\n"
printf "::group::Install additional shells\n"
dnf -y install fish zsh
touch "$HOME/.zshrc"
printf "::endgroup::\n"
- name: Checkout mommy
uses: actions/checkout@v6
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: |
printf "::group::Build\n"
make dist/rpm
printf "::endgroup::\n"
printf "::group::Install\n"
dnf -y install ./dist/mommy*.rpm
printf "::endgroup::\n"
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
dnf -y remove mommy
printf "::endgroup::\n"
- name: Install rpkg
run: dnf -y install rpkg
- name: Test SRPM package
working-directory: ./mommy/
run: |
printf "::group::Build\n"
rpkg -p ./pkg/rpkg local # build srpm
rpmbuild --rebuild /tmp/rpkg/mommy-*/*.rpm
printf "::endgroup::\n"
printf "::group::Install\n"
dnf -y install "$HOME"/rpmbuild/RPMS/*/*.rpm
printf "::endgroup::\n"
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
dnf -y remove mommy
printf "::endgroup::\n"
test-macos:
runs-on: macos-latest
steps:
- name: Install dependencies for mommy
run: |
printf "::group::Install ShellSpec\n"
brew tap shellspec/shellspec
brew install shellspec
printf "::endgroup::\n"
printf "::group::Install additional shell(s)\n"
curl -L -o /tmp/fish.pkg \
"$(curl -s -L https://fishshell.com/ | \
grep -m 1 -io "https://github\.com/fish-shell/fish-shell/releases/download/[a-z0-9/\.\-]*.pkg")"
sudo installer -pkg /tmp/fish.pkg -target /
rm /tmp/fish.pkg
printf "::endgroup::\n"
- name: Checkout
uses: actions/checkout@v6
- name: Test script
run: make test
- name: Install fpm
run: sudo gem install --no-document fpm
- name: Test fpm package
run: |
printf "::group::Build\n"
make dist/osxpkg
printf "::endgroup::\n"
printf "::group::Install\n"
sudo installer -pkg ./dist/mommy*+osx.pkg -target /
printf "::endgroup::\n"
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
sudo make uninstall/osxpkg
printf "::endgroup::\n"
- name: Checkout homebrew-mommy
uses: actions/checkout@v6
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: |
printf "::group::Configure shell completions for Brew\n"
mkdir -p "$HOME/.config/fish/"; printf "set -p fish_complete_path \"%s/share/fish/vendor_completions.d/\"\n" "$(brew --prefix)" >> "$HOME/.config/fish/config.fish"
printf "FPATH=\"%s/share/zsh/site-functions/:\$FPATH\"\n" "$(brew --prefix)" >> "$HOME/.zshrc"
printf "::endgroup::\n"
printf "::group::Install\n"
brew tap local/mommy "$(pwd)/homebrew-mommy"
brew install mommy --HEAD
printf "::endgroup::\n"
printf "::group::Test\n"
MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall\n"
brew uninstall mommy
brew untap local/mommy
printf "::endgroup::\n"
test-freebsd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Test script and package
uses: cross-platform-actions/action@v0.30.0
with:
operating_system: freebsd
version: "14.3"
run: |
printf "::group::Install basic packages\n"
sudo pkg install -y git gmake
printf "::endgroup::\n"
printf "::group::Install ShellSpec\n"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
sudo gmake -C /tmp/shellspec install
rm -rf /tmp/shellspec
printf "::endgroup::\n"
printf "::group::Install additional shells\n"
sudo pkg install -y fish zsh
touch "$HOME/.zshrc"
printf "::endgroup::\n"
# fpm
printf "::group::Install fpm: Actually install fpm\n"
sudo pkg install -y devel/ruby-gems
sudo gem install --no-document fpm
printf "::endgroup::\n"
# TODO[Workaround]: Remove after https://github.com/jordansissel/fpm/pull/1922 is merged
printf "::group::Install fpm: Install gtar\n"
sudo pkg install -y gtar
sudo mv /usr/bin/tar /usr/bin/bsdtar
sudo mv /usr/local/bin/gtar /usr/bin/tar
printf "::endgroup::\n"
# /fpm
printf "::group::Ignore ownership issues\n"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
printf "::endgroup::\n"
printf "::group::Test script\n"
gmake test
printf "::endgroup::\n"
printf "::group::Build package\n"
gmake dist/freebsd
printf "::endgroup::\n"
printf "::group::Install package\n"
sudo pkg add ./dist/mommy-*.freebsd
printf "::endgroup::\n"
printf "::group::Test package\n"
env MOMMY_SYSTEM=1 gmake test
printf "::endgroup::\n"
printf "::group::Uninstall package\n"
sudo pkg delete -y mommy
printf "::endgroup::\n"
test-netbsd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Test script and package
uses: cross-platform-actions/action@v0.30.0
with:
operating_system: netbsd
version: "10.1"
run: |
export PATH="/usr/sbin:$PATH" # Add 'pkg_*' commands to path
export MOMMY_ZSH_SKIP=1 # 'script' does not have the '-q' option in NetBSD
printf "::group::Install basic packages\n"
sudo pkgin -y in git gmake mozilla-rootcerts-openssl
printf "::endgroup::\n"
printf "::group::Install ShellSpec\n"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec/
sudo gmake -C /tmp/shellspec/ install
rm -rf /tmp/shellspec
printf "::endgroup::\n"
printf "::group::Install additional shells\n"
sudo pkgin -y in fish zsh
touch "$HOME/.zshrc"
printf "::endgroup::\n"
printf "::group::Ignore ownership issues\n"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
printf "::endgroup::\n"
printf "::group::Test script\n"
gmake test
printf "::endgroup::\n"
printf "::group::Build package\n"
gmake dist/netbsd
printf "::endgroup::\n"
printf "::group::Install package\n"
sudo pkg_add ./dist/mommy-*+netbsd.tgz
printf "::endgroup::\n"
printf "::group::Test package\n"
env MOMMY_SYSTEM=1 gmake test
printf "::endgroup::\n"
printf "::group::Uninstall package\n"
sudo pkg_delete mommy
printf "::endgroup::\n"
test-openbsd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install dependencies for mommy && Test script && Build package && Test package
uses: cross-platform-actions/action@v0.30.0
with:
operating_system: openbsd
version: "7.8"
run: |
export MOMMY_ZSH_SKIP=1 # 'script' does not have the '-q' option in OpenBSD
printf "::group::Install basic packages\n"
sudo pkg_add git gmake
printf "::endgroup::\n"
printf "::group::Install ShellSpec\n"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
sudo gmake -C /tmp/shellspec install
rm -rf /tmp/shellspec
printf "::endgroup::\n"
printf "::group::Install additional shells\n"
sudo pkg_add fish zsh
touch "$HOME/.zshrc"
printf "::endgroup::\n"
printf "::group::Install fpm\n"
sudo pkg_add "$(pkg_info -Q ruby | grep "^ruby-[0-9]" | tail -n 1)"
sudo /usr/local/bin/gem* install --no-document fpm
sudo ln -s "$(printf "%s\n" /usr/local/bin/fpm* | tr " " \\n | grep -E "[0-9]+$")" /usr/local/bin/fpm # Symlink 'fpm' to latest version
printf "::endgroup::\n"
printf "::group::Ignore ownership issues\n"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
printf "::endgroup::\n"
printf "::group::Test script\n"
gmake test
printf "::endgroup::\n"
printf "::group::Build package\n"
gmake dist/openbsd
printf "::endgroup::\n"
printf "::group::Install package\n"
sudo pkg_add -D unsigned ./dist/mommy-*+openbsd.tgz
printf "::endgroup::\n"
printf "::group::Test package\n"
env MOMMY_SYSTEM=1 gmake test
printf "::endgroup::\n"
printf "::group::Uninstall package\n"
sudo pkg_delete mommy
printf "::endgroup::\n"
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: |
printf "::group::Install ShellSpec\n"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
make -C /tmp/shellspec install
rm -rf /tmp/shellspec
printf "::endgroup::\n"
printf "::group::Post-install additional shells\n"
touch "$HOME/.zshrc"
printf "::endgroup::\n"
- name: Checkout
uses: actions/checkout@v6
- 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@v6
- 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 = ./.; })"
test-haiku:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Test script and package
uses: cross-platform-actions/action@v0.30.0
with:
operating_system: haiku
version: "r1beta5"
run: |
export MOMMY_ZSH_SKIP=1 # Haiku does not have the 'script' command
printf "::group::Install ShellSpec\n"
git clone --depth=1 https://github.com/shellspec/shellspec.git /tmp/shellspec
PREFIX="$HOME/config/non-packaged" make -C /tmp/shellspec install
rm -rf /tmp/shellspec
printf "::endgroup::\n"
printf "::group::Install additional shells\n"
pkgman install -y fish zsh
touch "$HOME/.zshrc"
printf "::endgroup::\n"
printf "::group::Ignore ownership issues\n"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
printf "::endgroup::\n"
printf "::group::Test script\n"
make test
printf "::endgroup::\n"
printf "::group::Build package\n"
make dist/haiku
printf "::endgroup::\n"
printf "::group::Install package\n"
pkgman install -y ./dist/mommy-*.hpkg
printf "::endgroup::\n"
printf "::group::Test package\n"
env MOMMY_SYSTEM=1 make test
printf "::endgroup::\n"
printf "::group::Uninstall package\n"
pkgman uninstall -y mommy
printf "::endgroup::\n"
test-solaris:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test script and package
uses: vmactions/solaris-vm@v1
with:
usesh: true
prepare: |
set -e
printf "::group::Install basic packages\n"
pkg install --no-index git
printf "::endgroup::\n"
printf "::group::Install ShellSpec\n"
# `gmake install` does not work because Solaris' `find` works differently
git clone --depth=1 https://github.com/shellspec/shellspec.git
ln -s "$PWD/shellspec/shellspec" /usr/bin/shellspec
printf "::endgroup::\n"
printf "::group::Install fpm\n"
pkg install --no-index ruby
gem install --no-document fpm
printf "::endgroup::\n"
printf "::group::Replace naughty executables\n"
rm /usr/bin/grep
cp /usr/bin/ggrep /usr/bin/grep
rm /usr/bin/sed
cp /usr/bin/gsed /usr/bin/sed
rm /usr/bin/tail
cp /usr/bin/gtail /usr/bin/tail
printf "::endgroup::\n"
echo "::group::Ignore ownership issues"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
echo "::endgroup::"
run: |
set -e
export MOMMY_FISH_SKIP=1 # Solaris' fish shell is completely botched
export MOMMY_MAN_SKIP=1 # Solaris' manual pages don't open correctly
export MOMMY_ZSH_SKIP=1 # Solaris' `script` does not have `-c` option
export PATH="$(printf "%s:" /usr/ruby/*/bin)$PATH"
echo "::group::Test script"
gmake test
echo "::endgroup::"
printf "::group::Build package\n"
gmake dist/p5p
printf "::endgroup::\n"
printf "::group::Install package\n"
pkg install -g ./dist/mommy-*.p5p mommy
printf "::endgroup::\n"
printf "::group::Test package\n"
env MOMMY_SYSTEM=1 gmake test
printf "::endgroup::\n"
printf "::group::Uninstall package\n"
pkg uninstall mommy
printf "::endgroup::\n"