Determine behaviour of EVFILT_WRITE for regular files on FreeBSD #40
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 tests FreeBSD | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'test/*' | |
- '.github/workflows/ci-freebsd.yml' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'test/*' | |
- '.github/workflows/ci-freebsd.yml' | |
jobs: | |
freebsd-tests: | |
# virtualbox takes a long time to start | |
timeout-minutes: 15 | |
runs-on: macos-10.15 | |
name: "FreeBSD tests" | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: libkqueue | |
- name: libkqueue test suite | |
uses: vmactions/[email protected] | |
with: | |
usesh: true | |
sync: sshfs | |
prepare: | | |
pkg install -y \ | |
cmake \ | |
llvm \ | |
run: | | |
freebsd-version | |
cd libkqueue/test | |
cmake . | |
make | |
./libkqueue-test |