Add github workflow running OpenBSD VM. #6
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: CI | |
on: [push] | |
jobs: | |
test: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: OpenBSD Virtual Machine | |
uses: cross-platform-actions/[email protected] | |
with: | |
operating_system: openbsd | |
version: '7.4' | |
hypervisor: xhyve | |
run: | | |
uname -a | |
echo $SHELL | |
pwd | |
ls -lah | |
whoami | |
env | sort | |
echo == depend == | |
sudo pkg_add libunbound | |
echo == obj == | |
make obj | |
echo == build == | |
make all | |
echo == test == | |
SUDO=sudo make test | |
tail -n100 obj/pfresolved.log |