Skip to content

Commit

Permalink
chore: added ppc64le support
Browse files Browse the repository at this point in the history
Signed-off-by: mayurwaghmode <waghmodemayur17@gmail.com>

Author:    Mayur Waghmode <42777188+mayurwaghmode@users.noreply.github.com>
  • Loading branch information
mayurwaghmode authored and crozzy committed Jan 5, 2023
1 parent ef896eb commit 1c002bc
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
needs: [config, release-archive]
strategy:
matrix:
goarch: ['arm64', 'amd64', '386']
goarch: ['arm64', 'amd64', '386', 'ppc64le']
goos: ['linux', 'windows', 'darwin']
exclude:
- goos: darwin
Expand All @@ -113,6 +113,10 @@ jobs:
goarch: arm64
- goos: windows
goarch: '386'
- goos: windows
goarch: 'ppc64le'
- goos: darwin
goarch: 'ppc64le'
env:
GOOS: ${{matrix.goos}}
GOARCH: ${{matrix.goarch}}
Expand Down Expand Up @@ -201,7 +205,7 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
context: ${{ runner.temp }}/build
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/ppc64le
push: true
tags: |
quay.io/${{ needs.config.outputs.image_repo }}:${{ needs.config.outputs.image_tag }}
Expand All @@ -222,7 +226,7 @@ jobs:
needs: [release-archive, release]
strategy:
matrix:
goarch: ['arm64', 'amd64', '386']
goarch: ['arm64', 'amd64', '386', 'ppc64le']
goos: ['linux', 'windows', 'darwin']
exclude:
- goos: darwin
Expand All @@ -231,6 +235,10 @@ jobs:
goarch: arm64
- goos: windows
goarch: '386'
- goos: darwin
goarch: ppc64le
- goos: windows
goarch: ppc64le
steps:
- name: Fetch Archive
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 1c002bc

Please sign in to comment.