Skip to content

Add FreeBSD CI test

Add FreeBSD CI test #7

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
name: A job to run test in FreeBSD
env:
MYTOKEN : "lala"
MYTOKEN2: "value2"
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
with:
envs: 'MYTOKEN MYTOKEN2'
usesh: true
prepare: |
set -x
pkg install -y curl mbedtls automake fltk
run: |
set -x
pwd
ls -lah
whoami
env
freebsd-version
ls -l /usr/local
ls -l /usr/local/include
./autogen.sh
./configure
cat config.log
make
make check
make distcheck