File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ compose-plugin:
4747.PHONY : cross
4848cross :
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
You can’t perform that action at this time.
0 commit comments