Skip to content

Commit 08965be

Browse files
committed
ci: Testing FreeBSD build matrix
Signed-off-by: Tyler Erickson <[email protected]>
1 parent 2929658 commit 08965be

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/vmactions.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,35 @@ jobs:
5656
freebsd:
5757
runs-on: ubuntu-latest
5858
name: Build openSeaChest for FreeBSD
59+
strategy:
60+
fail-fast: false
61+
matrix:
62+
config:
63+
- {
64+
name: "FreeBSD 14.2",
65+
releasename: "14.2",
66+
arch: "x86_64",
67+
}
68+
- {
69+
name: "FreeBSD 15.0",
70+
releasename: "15.0",
71+
arch: "x86_64",
72+
}
73+
- {
74+
name: "FreeBSD 13.5",
75+
releasename: "13.5",
76+
arch: "x86_64",
77+
}
5978
steps:
6079
- uses: actions/checkout@v4
6180
with:
6281
submodules: recursive
63-
- name: Build openSeaChest for FreeBSD
82+
- name: Build openSeaChest for ${{ matrix.config.name }}
6483
id: freebsd
6584
uses: vmactions/freebsd-vm@v1
6685
with:
86+
release: ${{ matrix.config.releasename }}
87+
arch: ${{ matrix.config.arch }}
6788
usesh: true
6889
prepare: |
6990
pkg install -y curl

0 commit comments

Comments
 (0)