This repository was archived by the owner on Jun 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-18
lines changed
Expand file tree Collapse file tree 1 file changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -15,39 +15,28 @@ jobs:
1515 name :
1616 Build AMD64
1717 command : |
18- env GOARCH=amd64
19- env GOOS=windows
20- go build -o ~/release/fgit-windows-amd64.exe fgit.go
21- env GOOS=darwin
22- go build -o ~/release/fgit-darwin-amd64 fgit.go
23- env GOOS=linux
24- go build -o ~/release/fgit-linux-amd64 fgit.go
18+ GOARCH=amd64 GOOS=windows go build -o ~/release/fgit-windows-amd64.exe fgit.go
19+ GOARCH=amd64 GOOS=darwin go build -o ~/release/fgit-darwin-amd64 fgit.go
20+ GOARCH=amd64 GOOS=linux go build -o ~/release/fgit-linux-amd64 fgit.go
2521
2622 - run :
2723 name :
2824 Build 386
2925 command : |
30- env GOARCH=386
31- env GOOS=windows
32- go build -o ~/release/fgit-windows-386.exe fgit.go
33- env GOOS=linux
34- go build -o ~/release/fgit-linux-386 fgit.go
26+ GOARCH=386 GOOS=windows go build -o ~/release/fgit-windows-386.exe fgit.go
27+ GOARCH=386 GOOS=linux go build -o ~/release/fgit-linux-386 fgit.go
3528
3629 - run :
3730 name :
3831 Build ARM
3932 command : |
40- env GOARCH=arm
41- env GOOS=linux
42- go build -o ~/release/fgit-linux-arm fgit.go
33+ GOARCH=arm GOOS=linux go build -o ~/release/fgit-linux-arm fgit.go
4334
4435 - run :
4536 name :
4637 Build ARM64
4738 command : |
48- env GOARCH=arm64
49- env GOOS=linux
50- go build -o ~/release/fgit-linux-arm64 fgit.go
39+ GOARCH=arm64 GOOS=linux go build -o ~/release/fgit-linux-arm64 fgit.go
5140
5241 - store_artifacts :
5342 path : ~/release
You can’t perform that action at this time.
0 commit comments