From e0286360a80f9f32d781b4bf1ee0f30defeccecb Mon Sep 17 00:00:00 2001 From: Sneha Kanekar1 Date: Thu, 14 Apr 2022 17:25:01 +0530 Subject: [PATCH] add support for ppc64le Signed-off-by: Sneha Kanekar1 --- .github/workflows/artifacts.yml | 6 ++++++ builder.Makefile | 1 + 2 files changed, 7 insertions(+) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 760189dac..cb224d6ba 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -42,6 +42,12 @@ jobs: name: docker-compose-linux-amd64 path: ${{ github.workspace }}/bin/docker-compose-linux-amd64 + - name: Upload linux-ppc64le binary + uses: actions/upload-artifact@v2 + with: + name: docker-compose-linux-ppc64le + path: ${{ github.workspace }}/bin/docker-compose-linux-ppc64le + - name: Upload windows-amd64 binary uses: actions/upload-artifact@v2 with: diff --git a/builder.Makefile b/builder.Makefile index 3509e61f1..0f525adb3 100644 --- a/builder.Makefile +++ b/builder.Makefile @@ -47,6 +47,7 @@ compose-plugin: .PHONY: cross cross: GOOS=linux GOARCH=amd64 $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-x86_64 ./cmd + GOOS=linux GOARCH=ppc64le $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-ppc64le ./cmd GOOS=linux GOARCH=arm64 $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-aarch64 ./cmd GOOS=linux GOARM=6 GOARCH=arm $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-armv6 ./cmd GOOS=linux GOARM=7 GOARCH=arm $(GO_BUILD) $(TAGS) -o $(COMPOSE_BINARY)-linux-armv7 ./cmd