summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 878276864..4a321a5e0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -30,8 +30,11 @@ jobs:
- name: Test code
run: |
./test.sh
- - name: Build binaries
+ - name: Install gox
+ working-directory: /tmp
run: |
go get github.com/mitchellh/gox
- export PATH="$(go env GOPATH)/bin:$PATH"
+ echo "::add-path::$(go env GOPATH)/bin"
+ - name: Build binaries
+ run: |
gox -parallel 4 -os "linux freebsd netbsd windows" -osarch "darwin/i386 darwin/amd64"