From 5fb7dabe8b0cf90abddbce7d2213b169f3dff7ce Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 28 Mar 2021 15:48:33 -0400 Subject: ci: Add a FreeBSD build --- .github/workflows/freebsd.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/freebsd.yml (limited to '.github/workflows/freebsd.yml') diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml new file mode 100644 index 0000000..0187096 --- /dev/null +++ b/.github/workflows/freebsd.yml @@ -0,0 +1,32 @@ +name: FreeBSD + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + env: + SSH_KEY: ${{ secrets.SSH_KEY }} + TAILSCALE_KEY: ${{ secrets.TAILSCALE_KEY }} + TAILSCALE_MACHINE_KEY: ${{ secrets.TAILSCALE_MACHINE_KEY }} + run: | + curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.gpg | sudo apt-key add - + curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.list | sudo tee /etc/apt/sources.list.d/tailscale.list + sudo apt-get update -y + sudo apt-get install -y tailscale + printf '%s' "TAILSCALE_MACHINE_KEY" | sudo tee /var/lib/tailscale/tailscaled.state >/dev/null + sudo tailscale up --authkey="$TAILSCALE_KEY" + mkdir ~/.ssh + printf '%s' "$SSH_KEY" >~/.ssh/github-actions + chmod 0600 ~/.ssh/github-actions + printf 'Host muon\n\tStrictHostKeyChecking=accept-new\n\tUser github\n\tIdentityFile ~/.ssh/github-actions\n' >~/.ssh/config + + - name: Run tests + run: | + rsync -rl --delete . muon:bfs + ssh muon 'gmake -C bfs -j$(sysctl -n hw.ncpu) distcheck' -- cgit v1.2.3