diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-05-17 19:13:07 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-05-17 19:45:53 -0400 |
commit | eeae24c740693b99f4fc3d57f0fe8324baf35e6e (patch) | |
tree | 154af0472bc8080fc08dec8c47ab003dcd3fe416 /.github | |
parent | cf5547e6d2151e8e50ae56db2de27e72d46df167 (diff) | |
download | bfs-eeae24c740693b99f4fc3d57f0fe8324baf35e6e.tar.xz |
ci/freebsd: Work around https://github.com/tailscale/tailscale/issues/1889
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/freebsd.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml index 2d459fb..3148e94 100644 --- a/.github/workflows/freebsd.yml +++ b/.github/workflows/freebsd.yml @@ -23,6 +23,7 @@ jobs: TAILSCALE_KEY: ${{ secrets.TAILSCALE_KEY }} run: | sudo tailscale up --authkey="$TAILSCALE_KEY" + tailscale netcheck - name: Configure SSH env: @@ -31,9 +32,9 @@ jobs: 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 + printf 'Host fd7a:115c:a1e0:ab12:4843:cd96:6265:b302\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' + rsync -rl --delete . '[fd7a:115c:a1e0:ab12:4843:cd96:6265:b302]':bfs + ssh fd7a:115c:a1e0:ab12:4843:cd96:6265:b302 'gmake -C bfs -j$(sysctl -n hw.ncpu) distcheck' |