Add FreeBSD CI test #8
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: 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 |