-
Notifications
You must be signed in to change notification settings - Fork 165
43 lines (41 loc) · 1.13 KB
/
freebsd.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
name: freebsd
on:
push:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/freebsd.yml'
pull_request:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/freebsd.yml'
jobs:
freebsd:
runs-on: macos-12
steps:
- name: checkout libva
uses: actions/checkout@v3
with:
repository: intel/libva
path: libva
- name: checkout libva-utils
uses: actions/checkout@v3
with:
path: libva-utils
- name: test
uses: vmactions/freebsd-vm@v0
with:
prepare: |
pkg install -y meson pkgconf libdrm libXext libXfixes wayland
pkg install -y -x '^mesa($|-libs)'
run: |
set PREFIX="$PWD/_install"
set LIBDIR="$PREFIX/lib"
setenv PKG_CONFIG_PATH $LIBDIR/pkgconfig:$PREFIX/libdata/pkgconfig
cd libva
meson --prefix=$PREFIX --libdir=$LIBDIR _build
meson compile -C _build
meson install -C _build
cd ../libva-utils
meson --prefix=$PREFIX --libdir=$LIBDIR _build
meson compile -C _build
meson install -C _build