jxl: Add animation support #66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FreeBSD | |
on: [push, pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
env: | |
BUILD_PATH: /tmp/build | |
INSTALL_PATH: /tmp/install | |
steps: | |
- uses: actions/checkout@v4 | |
- name: FreeBSD check | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
prepare: > | |
pkg install -y | |
meson pkgconf | |
wayland wayland-protocols libxkbcommon freetype2 fontconfig | |
json-c libinotify googletest | |
libavif giflib libheif libjxl libexif openexr png tiff webp jpeg-turbo | |
run: | | |
meson setup -D tests=enabled -D heif=enabled -D bash=auto -D exif=enabled -D exr=enabled -D gif=enabled -D jpeg=enabled -D jxl=enabled -D svg=auto -D tiff=enabled -D webp=enabled -D man=true -D desktop=true --prefix=/usr ${{ env.BUILD_PATH }} | |
meson compile -C ${{ env.BUILD_PATH }} | |
env DESTDIR=${{ env.INSTALL_PATH }} meson install -C ${{ env.BUILD_PATH }} | |
${{ env.INSTALL_PATH }}/usr/bin/swayimg --version | |
meson test --verbose -C ${{ env.BUILD_PATH }} |