Skip to content

Commit

Permalink
adding support for ppc64le arch (#5645)
Browse files Browse the repository at this point in the history
* adding support for linux/ppc64le arch

* Update CHANGELOG.md

Co-authored-by: Alex Boten <[email protected]>
  • Loading branch information
adilhusain-s and Alex Boten authored Jul 7, 2022
1 parent a1e2ad0 commit feab949
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ jobs:
goarch: amd64
- goos: linux
goarch: arm64
- goos: linux
goarch: ppc64le
- goos: linux
goarch: arm
- goos: windows
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scripts/verify-dist-files-exist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ files=(
bin/otelcol_darwin_amd64
bin/otelcol_darwin_arm64
bin/otelcol_linux_arm64
bin/otelcol_linux_ppc64le
bin/otelcol_linux_amd64
bin/otelcol_windows_amd64.exe
);
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### 💡 Enhancements 💡

- Add `linux-ppc64le` architecture to cross build tests in CI

## v0.55.0 Beta

### 🛑 Breaking changes 🛑
Expand Down
1 change: 1 addition & 0 deletions cmd/builder/.goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ builds:
goarch:
- amd64
- arm64
- ppc64le
ignore:
- goos: windows
goarch: arm64
Expand Down

0 comments on commit feab949

Please sign in to comment.