diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-05-13 15:08:24 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-05-13 15:08:24 -0400 |
commit | 1f48f0ad046fa8ce6b6dc5b82e337cae4eb74b9e (patch) | |
tree | decc56130b78b5df1423caa7559515f95e74713e /.github/workflows | |
parent | 6494eeb9aa03d37ebe3a00a0756db2c4c9d6a065 (diff) | |
download | bfs-1f48f0ad046fa8ce6b6dc5b82e337cae4eb74b9e.tar.xz |
ci/freebsd: Run in a jail
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81b7f77..e7188dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: runs-on: ubuntu-latest - concurrency: muon + concurrency: spurion steps: - uses: actions/checkout@v2 @@ -78,10 +78,10 @@ jobs: mkdir ~/.ssh printf '%s' "$SSH_KEY" >~/.ssh/github-actions chmod 0600 ~/.ssh/github-actions - printf 'Host %s\n\tStrictHostKeyChecking=accept-new\n\tUser github\n\tIdentityFile ~/.ssh/github-actions\n' "$(tailscale ip -6 muon)" >~/.ssh/config + printf 'Host %s\n\tStrictHostKeyChecking=accept-new\n\tUser github\n\tIdentityFile ~/.ssh/github-actions\n' "$(tailscale ip -6 spurion)" >~/.ssh/config - name: Run tests run: | - muon=$(tailscale ip -6 muon) - rsync -rl --delete . "[$muon]:bfs" - ssh "$muon" 'gmake -C bfs -j$(sysctl -n hw.ncpu) distcheck DISTCHECK_FLAGS=TEST_FLAGS=--verbose' + spurion=$(tailscale ip -6 spurion) + rsync -rl --delete . "[$spurion]:bfs" + ssh "$spurion" 'gmake -C bfs -j$(sysctl -n hw.ncpu) distcheck' |