diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2582c53a4..2e1e7865c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,3 +58,14 @@ jobs: run: | yum -y install gcc make make REDIS_CFLAGS='-Werror' + + build-freebsd: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: make + uses: vmactions/freebsd-vm@v0.1.0 + with: + usesh: true + prepare: pkg install -y gmake + run: gmake |