-
-
Notifications
You must be signed in to change notification settings - Fork 4
106 lines (99 loc) · 3.27 KB
/
ronin-install.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
name: ronin-install.sh
on:
push:
paths:
- .github/workflows/ronin-install.yml
- Makefile
- ronin-install.sh
- test/helper.sh
- test/ronin_install_test.sh
pull_request:
paths:
- .github/workflows/ronin-install.yml
- Makefile
- ronin-install.sh
- test/helper.sh
- test/ronin_install_test.sh
jobs:
ubuntu:
runs-on: ubuntu-latest
name: "ronin-install.sh on Ubuntu"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update -qq -y && sudo apt-get install -qq -y shunit2
- name: Configure env
run: echo "SHUNIT2=$(command -v shunit2 2>/dev/null)" >> $GITHUB_ENV
- name: Run tests
run: ./test/ronin_install_test.sh
fedora:
runs-on: ubuntu-latest
container: fedora:latest
name: "ronin-install.sh on Fedora Linux"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: dnf update -q -y && dnf install -q -y shunit2
- name: Configure env
run: echo "SHUNIT2=$(command -v shunit2 2>/dev/null)" >> $GITHUB_ENV
- name: Run tests
run: ./test/ronin_install_test.sh
opensuse:
runs-on: ubuntu-latest
container: opensuse/tumbleweed:latest
name: "ronin-install.sh on OpenSUSE"
steps:
- name: Install dependencies
run: zypper ref && zypper --non-interactive in tar gzip findutils shunit2
- uses: actions/checkout@v4
- name: Configure env
run: echo "SHUNIT2=$(command -v shunit2 2>/dev/null)" >> $GITHUB_ENV
- name: Run tests
run: ./test/ronin_install_test.sh
archlinux:
runs-on: ubuntu-latest
container: archlinux:latest
name: "ronin-install.sh on ArchLinux"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman-key --init && \
pacman -Syu --noconfirm && \
pacman -Sy --noconfirm git base base-devel && \
useradd -d /home/makepkg makepkg && \
mkdir -p /home/makepkg/{.config/pacman,.gnupg,out} && \
chown -R makepkg:users /home/makepkg && \
sudo -u makepkg /bin/bash -c "cd /home/makepkg && git clone --quiet --depth 1 https://aur.archlinux.org/shunit2.git && cd shunit2/ && makepkg" && \
pacman -U --noconfirm /home/makepkg/shunit2/shunit2-*.pkg.tar.zst
- name: Configure env
run: echo "SHUNIT2=$(command -v shunit2 2>/dev/null)" >> $GITHUB_ENV
- name: Run tests
run: ./test/ronin_install_test.sh
macos:
runs-on: macos-latest
name: "ronin-install.sh on macOS"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: brew install shunit2
- name: Configure env
run: echo "SHUNIT2=$(command -v shunit2 2>/dev/null)" >> $GITHUB_ENV
- name: Run tests
run: ./test/ronin_install_test.sh
freebsd:
runs-on: ubuntu-latest
name: "ronin-install.sh on FreeBSD"
steps:
- uses: actions/checkout@v4
- name: Run tests
id: freebsd
uses: vmactions/freebsd-vm@v1
with:
usesh: true
copyback: false
prepare: |
pkg install -y shunit2
run: |
export SHUNIT2="$(command -v shunit2 2>/dev/null)"
./test/ronin_install_test.sh