From f0bb386bf2ce9eb9bccb1da8d03321d63865e3d9 Mon Sep 17 00:00:00 2001 From: Slaven Rezic Date: Sun, 5 Nov 2023 17:07:14 +0100 Subject: [PATCH] github workflow for FreeBSD --- .github/workflows/test-freebsd.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test-freebsd.yml diff --git a/.github/workflows/test-freebsd.yml b/.github/workflows/test-freebsd.yml new file mode 100644 index 00000000..59e629f3 --- /dev/null +++ b/.github/workflows/test-freebsd.yml @@ -0,0 +1,25 @@ +name: CI on FreeBSD + +on: + workflow_dispatch: + +jobs: + test: + name: Test on FreeBSD + runs-on: macos-12 + steps: + - uses: actions/checkout@v4 + with: + clean: false + show-progress: false + - uses: cross-platform-actions/action@v0.21.1 + with: + operating_system: freebsd + version: '13.2' + run: | + sudo pkg update + sudo pkg install -y perl5 libX11 libXft png freetype2 fontconfig jpeg-turbo xorg-vfbserver + Xvfb :123 & + perl Makefile.PL + make + make test