feature(ci): simplify go binary test build

This commit is contained in:
Alexander 2021-08-28 11:17:03 +09:00
parent b68e76bbac
commit b4de7c09e7

View file

@ -38,13 +38,22 @@ jobs:
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Go cross-platform build test
uses: thatisuday/go-cross-build@v1
with:
platforms: ${{ matrix.goos }}/${{ matrix.goarch }}
package: 'weed'
name: 'weed'
dest: '/tmp/dist'
- name: Get dependencies
run: |
cd weed; go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: cd weed; GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v .