Skip to content

Commit

Permalink
[chore] remove split by goarch (open-telemetry#347)
Browse files Browse the repository at this point in the history
The split by goarch doesn't work yet. The library used to generate the goreleaser
config doesn't support partial configuration, which we would need to be able to
use goarch as a parameter. See discussion https://github.com/orgs/goreleaser/discussions/4033#discussioncomment-6007074

Signed-off-by: Alex Boten <[email protected]>
  • Loading branch information
Alex Boten authored May 30, 2023
1 parent 224f39b commit 417a85d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/ci-goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ jobs:
strategy:
matrix:
GOOS: [linux, windows, darwin]
GOARCH: ["386", amd64, arm64, ppc64le]
exclude:
- GOOS: darwin
GOARCH: "386"
- GOOS: windows
GOARCH: arm64
runs-on: ubuntu-20.04

steps:
Expand Down Expand Up @@ -59,5 +53,4 @@ jobs:
args: --snapshot --clean --skip-sign --skip-sbom --timeout 2h --split
env:
GOOS: ${{ matrix.GOOS }}
GOARCH: ${{ matrix.GOARCH }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
7 changes: 0 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ jobs:
strategy:
matrix:
GOOS: [linux, windows, darwin]
GOARCH: ["386", amd64, arm64, ppc64le]
exclude:
- GOOS: darwin
GOARCH: "386"
- GOOS: windows
GOARCH: arm64
runs-on: ubuntu-20.04

steps:
Expand Down Expand Up @@ -63,7 +57,6 @@ jobs:
args: release --clean --split --timeout 2h
env:
GOOS: ${{ matrix.GOOS }}
GOARCH: ${{ matrix.GOARCH }}
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
COSIGN_EXPERIMENTAL: true
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
Expand Down

0 comments on commit 417a85d

Please sign in to comment.