Skip to content

Commit

Permalink
.github: build a toolchain for windows/amd64
Browse files Browse the repository at this point in the history
We will need this for some of our in-progress build/CI improvements.

Updates tailscale/corp#24680
  • Loading branch information
creachadair committed Dec 4, 2024
1 parent 96578f7 commit a6a2c5e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@ jobs:
build_release:
strategy:
matrix:
GOOS: ["linux", "darwin"]
GOOS: ["linux", "darwin", "windows"]
GOARCH: ["amd64", "arm64"]
exclude:
- GOOS: windows
GOARCH: arm64
runs-on: ubuntu-20.04
if: contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
if: contains(fromJSON('["push", "pull_request", "workflow_dispatch"]'), github.event_name)
steps:
- name: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down

0 comments on commit a6a2c5e

Please sign in to comment.