Skip to content

ci: update freebsd vm to the v1 version #389

ci: update freebsd vm to the v1 version

ci: update freebsd vm to the v1 version #389

Workflow file for this run

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: ubuntu-latest
steps:
- name: checkout libva
uses: actions/checkout@v4
with:
repository: intel/libva
- name: checkout libva-utils
uses: actions/checkout@v4
with:

Check failure on line 23 in .github/workflows/freebsd.yml

View workflow run for this annotation

GitHub Actions / freebsd

Invalid workflow file

The workflow is not valid. .github/workflows/freebsd.yml (Line: 23, Col: 12): Unexpected value ''
- name: test
uses: vmactions/freebsd-vm@v1
with:
prepare: |
pkg install -y meson pkgconf libdrm libXext libXfixes wayland
pkg install -y -x '^mesa($|-libs)'
run: |
cd libva
meson setup _build --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu
meson compile -C _build
meson install -C _build
cd ../libva-utils
meson setup _build --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu
meson compile -C _build
meson install -C _build