Skip to content

Commit

Permalink
Experiment with CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
pgj committed Sep 28, 2024
1 parent 5daed4e commit 5cc4605
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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 gtar patchelf squashfs-tools-ng
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

0 comments on commit 5cc4605

Please sign in to comment.