Skip to content

Commit 567828b

Browse files
committed
ci: fix freebsd build
Switching to: * vmactions/[email protected] to fetch FreeBSD 13 * macos-10.15 It seems github systems are getting updates with later macos versions (11.6.1) which don't have vboxmanage required to run VMs. Signed-off-by: Dmitry Rogozhkin <[email protected]>
1 parent be95c6b commit 567828b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/freebsd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
freebsd:
15-
runs-on: macos-latest
15+
runs-on: macos-10.15
1616
steps:
1717
- name: checkout libva
1818
uses: actions/checkout@v2
@@ -24,15 +24,15 @@ jobs:
2424
with:
2525
path: libva-utils
2626
- name: test
27-
uses: vmactions/[email protected].3
27+
uses: vmactions/[email protected].5
2828
with:
2929
prepare: |
3030
pkg install -y meson pkgconf libdrm libXext libXfixes wayland
3131
pkg install -y -x '^mesa($|-libs)'
3232
run: |
3333
set PREFIX="$PWD/_install"
3434
set LIBDIR="$PREFIX/lib"
35-
setenv PKG_CONFIG_PATH $LIBDIR/pkgconfig
35+
setenv PKG_CONFIG_PATH $LIBDIR/pkgconfig:$PREFIX/libdata/pkgconfig
3636
cd libva
3737
meson --prefix=$PREFIX --libdir=$LIBDIR _build
3838
meson compile -C _build

0 commit comments

Comments
 (0)