-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Build Checks | ||
on: [push] | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
name: Continuous Integration | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Wifibox Alpine (FreeBSD 13) | ||
id: wifibox-alpine-freebsd13 | ||
uses: vmactions/freebsd-vm@v1 | ||
with: | ||
release: "13.4" | ||
usesh: true | ||
prepare: | | ||
pkg install -y gitup gtar patchelf squashfs-tools-ng | ||
gitup ports | ||
run: | | ||
kldload linux64 | ||
mkdir -p /compat/linux | ||
make -C net/wifibox-alpine check-plist | ||
make -C net/wifibox-alpine install | ||
make -C net/wifibox-alpine deinstall | ||
make -C net/wifibox-alpine clean |