Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
xishang0128 committed Feb 23, 2024
1 parent e4bc205 commit 9636fea
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,23 @@ jobs:
strategy:
matrix:
jobs:
- { goos: darwin, goarch: arm64, goamd64: v1, output: arm64 }
- { goos: darwin, goarch: amd64, goamd64: v1, output: amd64 }
- { goos: darwin, goarch: arm64, output: arm64 }
- { goos: darwin, goarch: amd64, output: amd64 }

- { goos: linux, goarch: '386', goamd64: v1, output: '386' }
- { goos: linux, goarch: amd64, goamd64: v1, output: x86_64 }
- { goos: linux, goarch: '386', output: '386' }
- { goos: linux, goarch: amd64, output: x86_64 }
- { goos: linux, goarch: amd64, goamd64: v3, output: x86_64_v3 }
- { goos: linux, goarch: arm64, goamd64: v1, output: arm64 }
- { goos: linux, goarch: arm64, output: arm64 }

- { goos: windows, goarch: '386', goamd64: v1, output: '386' }
- { goos: windows, goarch: arm64, goamd64: v1, output: arm64 }
- { goos: windows, goarch: amd64, goamd64: v1, output: x86_64 }
- { goos: windows, goarch: '386', output: '386' }
- { goos: windows, goarch: amd64, output: x86_64 }
- { goos: windows, goarch: amd64, goamd64: v3, output: x86_64_v3 }
- { goos: windows, goarch: arm64, output: arm64 }

- { goos: freebsd, goarch: '386', goamd64: v3, output: '386' }
- { goos: freebsd, goarch: amd64, goamd64: v3, output: x86_64 }
- { goos: freebsd, goarch: amd64, goamd64: v3, output: x86_64_v3 }
- { goos: freebsd, goarch: arm64, output: arm64 }

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 9636fea

Please sign in to comment.