mirror of https://github.com/on4kjm/FLEcli.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
357 B
19 lines
357 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Testing..."
|
|
|
|
go test ./...
|
|
|
|
mkdir -p executables/windows
|
|
mkdir -p executables/macos
|
|
mkdir -p executables/linux
|
|
|
|
./update-version.sh
|
|
|
|
GOOS=windows GOARCH=386 go build -o executables/windows/FLEcli.exe
|
|
GOOS=darwin GOARCH=amd64 go build -o executables/macos/FLEcli
|
|
GOOS=linux GOARCH=amd64 go build -o executables/linux/FLEcli-amd64
|
|
|