Skip to content

Commit

Permalink
chore: remove ppc64le builds because we don't have full set of contai…
Browse files Browse the repository at this point in the history
…ners so what's the point?

Change-Id: I5a86e0c429f3fff7b3c53e5987d93511fda74395
Signed-off-by: Nick Boldt <[email protected]>
  • Loading branch information
nickboldt committed Sep 18, 2023
1 parent 90817af commit 1c6f8da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh_actions_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: docker/build-push-action@v3
with:
file: build/dockerfiles/Dockerfile
platforms: linux/amd64,linux/ppc64le,linux/arm64
platforms: linux/amd64,linux/arm64
push: false
tags: quay.io/eclipse/che-machine-exec:pr-check

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/next-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: docker/build-push-action@v3
with:
file: build/dockerfiles/Dockerfile
platforms: linux/amd64,linux/ppc64le,linux/arm64
platforms: linux/amd64,linux/arm64
push: true
tags: |
quay.io/eclipse/che-machine-exec:next
Expand Down
2 changes: 1 addition & 1 deletion make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ releaseMachineExec() {
--tag "${REGISTRY}/${ORGANIZATION}/${IMAGE}:${VERSION}" \
--push \
--provenance=false \
-f ./${DOCKERFILE} . --platform "linux/amd64,linux/ppc64le,linux/arm64" | cat
-f ./${DOCKERFILE} . --platform "linux/amd64,linux/arm64" | cat
echo "Pushed ${REGISTRY}/${ORGANIZATION}/${IMAGE}:${VERSION}"
}

Expand Down

0 comments on commit 1c6f8da

Please sign in to comment.