Skip to content

Commit e028636

Browse files
author
Sneha Kanekar1
committed
add support for ppc64le
Signed-off-by: Sneha Kanekar1 <[email protected]>
1 parent 5d809a2 commit e028636

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/artifacts.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ jobs:
4242
name: docker-compose-linux-amd64
4343
path: ${{ github.workspace }}/bin/docker-compose-linux-amd64
4444

45+
- name: Upload linux-ppc64le binary
46+
uses: actions/upload-artifact@v2
47+
with:
48+
name: docker-compose-linux-ppc64le
49+
path: ${{ github.workspace }}/bin/docker-compose-linux-ppc64le
50+
4551
- name: Upload windows-amd64 binary
4652
uses: actions/upload-artifact@v2
4753
with:

builder.Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ compose-plugin:
4747
.PHONY: cross
4848
cross:
4949
GOOS=linux GOARCH=amd64 $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-x86_64 ./cmd
50+
GOOS=linux GOARCH=ppc64le $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-ppc64le ./cmd
5051
GOOS=linux GOARCH=arm64 $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-aarch64 ./cmd
5152
GOOS=linux GOARM=6 GOARCH=arm $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-armv6 ./cmd
5253
GOOS=linux GOARM=7 GOARCH=arm $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-armv7 ./cmd

0 commit comments

Comments
 (0)