mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
ci: split gox step
This commit is contained in:
parent
939305ff5a
commit
74444ae328
1 changed files with 5 additions and 1 deletions
|
|
@ -22,9 +22,13 @@ build-shared: &build-shared
|
||||||
command: |
|
command: |
|
||||||
go test -v ./...
|
go test -v ./...
|
||||||
- run:
|
- run:
|
||||||
name: Compile project on every platform
|
name: Get gox
|
||||||
|
working_directory: "/tmp"
|
||||||
command: |
|
command: |
|
||||||
go get github.com/mitchellh/gox
|
go get github.com/mitchellh/gox
|
||||||
|
- run:
|
||||||
|
name: Compile project on every platform
|
||||||
|
command: |
|
||||||
gox -parallel 10 -os "linux freebsd" -osarch "darwin/i386 darwin/amd64"
|
gox -parallel 10 -os "linux freebsd" -osarch "darwin/i386 darwin/amd64"
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: pkg-cache-{{ checksum "go.sum" }}-v5
|
key: pkg-cache-{{ checksum "go.sum" }}-v5
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue