Skip to content

Commit

Permalink
feat(build): binary releases for the RISC-V architecture (Linux only)
Browse files Browse the repository at this point in the history
Close #49
  • Loading branch information
npdgm committed Sep 19, 2022
1 parent 40c33f5 commit fbe127c
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/release.yml
Expand Up @@ -56,27 +56,35 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
#goos: [linux]
#goarch: [amd64, arm64, riscv64]
goos: [linux, darwin, freebsd, illumos, netbsd, openbsd, solaris, windows]
goarch: [amd64, arm64, "386"]
goarch: [amd64, arm64, riscv64, "386"]
exclude:
- goos: darwin
goarch: arm64
goarch: riscv64
- goos: darwin
goarch: "386"
- goos: freebsd
goarch: arm64
goarch: riscv64
- goos: illumos
goarch: arm64
- goos: illumos
goarch: riscv64
- goos: illumos
goarch: "386"
- goos: netbsd
goarch: riscv64
- goos: openbsd
goarch: arm64
goarch: riscv64
- goos: solaris
goarch: arm64
- goos: solaris
goarch: riscv64
- goos: solaris
goarch: "386"
- goos: windows
goarch: arm64
goarch: riscv64
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down

0 comments on commit fbe127c

Please sign in to comment.