8000 fix: update dockerfile to fix test by ethanndickson · Pull Request #84 · coder/tailscale · GitHub
[go: up one dir, main page]

Skip to content

fix: update dockerfile to fix test #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 20, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
comment out tests for platforms we dont build
  • Loading branch information
ethanndickson committed May 20, 2025
commit 9ac9a77a109bf5733b1586a3d07115070f274a17
26 changes: 13 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@ jobs:
# tested more exhaustively in the 'test' job above.
- goos: linux
goarch: arm64
- goos: linux
goarch: "386" # thanks yaml
- goos: linux
goarch: loong64
- goos: linux
goarch: arm
goarm: "5"
# - goos: linux
# goarch: "386" # thanks yaml
# - goos: linux
# goarch: loong64
# - goos: linux
# goarch: arm
# goarm: "5"
- goos: linux
goarch: arm
goarm: "7"
Expand All @@ -199,11 +199,11 @@ jobs:
goarch: amd64
- goos: windows
goarch: arm64
# BSDs
- goos: freebsd
goarch: amd64
- goos: openbsd
goarch: amd64
# # BSDs
# - goos: freebsd
# goarch: amd64
# - goos: openbsd
# goarch: amd64

runs-on: ubuntu-22.04
steps:
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
{
"attachments": [{
"title": "Failure: ${{ github.workflow }}",
"title_link": "https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks",
"title_link": "https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks",
"text": "${{ github.repository }}@${{ github.ref_name }}: <https://github.com/${{ github.repository }}/commit/${{ github.sha }}|${{ github.sha }}>",
"fields": [{ "value": ${{ toJson(github.event.head_commit.message) }}, "short": false }],
"footer": "${{ github.event.head_commit.committer.name }} at ${{ github.event.head_commit.timestamp }}",
Expand Down
Loading
0