We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bce8db commit bee5eb1Copy full SHA for bee5eb1
1 file changed
.github/workflows/build.yaml
@@ -32,6 +32,8 @@ jobs:
32
- gentoo/stage3:musl-hardened
33
- gentoo/stage3:hardened
34
- freebsd
35
+ - freebsd:14.4
36
+ - freebsd:14.4:aarch64
37
config:
38
- cmake_args: "-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc"
39
- cmake_args: "-DENABLE_API=ON -DCMAKE_C_COMPILER=clang"
@@ -190,6 +192,8 @@ jobs:
190
192
if: startsWith(matrix.os, 'freebsd')
191
193
uses: vmactions/freebsd-vm@v1
194
with:
195
+ release: ${{ split(matrix.os, ':')[1] || '' }}
196
+ arch: ${{ split(matrix.os, ':')[2] || '' }}
197
prepare: |
198
PACKAGES="git cmake pkgconf curl jansson libsodium libmicrohttpd argp-standalone libepoll-shim"
199
if echo "${{ matrix.config.cmake_args }}" | grep -q "CMAKE_C_COMPILER=gcc"; then
0 commit comments