File tree 2 files changed +7
-0
lines changed 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 42
42
name : docker-compose-linux-amd64
43
43
path : ${{ github.workspace }}/bin/docker-compose-linux-amd64
44
44
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
+
45
51
- name : Upload windows-amd64 binary
46
52
uses : actions/upload-artifact@v2
47
53
with :
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ compose-plugin:
47
47
.PHONY : cross
48
48
cross :
49
49
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
50
51
GOOS=linux GOARCH=arm64 $(GO_BUILD ) $(TAGS ) -o $(COMPOSE_BINARY ) -linux-aarch64 ./cmd
51
52
GOOS=linux GOARM=6 GOARCH=arm $(GO_BUILD ) $(TAGS ) -o $(COMPOSE_BINARY ) -linux-armv6 ./cmd
52
53
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