update FreeBSD auto-build #5
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: FreeBSD build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: FreeBSD build | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
prepare: | | |
pkg install -y git gmake libX11 libXi libXtst | |
run: | | |
./configure | |
gmake | |
gmake DESTDIR=spacenavd-freebsd install | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: spacenavd-freebsd | |
path: spacenavd-freebsd | |
# vi:ts=2 sts=2 sw=2 expandtab: |