Refactor travis files

This commit is contained in:
Caleb Bassi 2019-02-07 19:04:51 -08:00
parent 77dfcba386
commit 9e7f58b769
2 changed files with 29 additions and 26 deletions

View File

@ -10,10 +10,6 @@ env:
global: global:
- NAME=gotop - NAME=gotop
install: true
script:
- ./ci/script.sh
matrix: matrix:
include: include:
# Linux # Linux
@ -34,6 +30,9 @@ matrix:
- env: _GOOS=darwin _GOARCH=amd64 - env: _GOOS=darwin _GOARCH=amd64
os: osx os: osx
install: true
script: ./ci/script.sh
deploy: deploy:
provider: releases provider: releases
api_key: $GITHUB_TOKEN api_key: $GITHUB_TOKEN

View File

@ -1,5 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
function main {
# Check if any command failed # Check if any command failed
ERROR=false ERROR=false
@ -30,3 +31,6 @@ fi
if [ ${ERROR} == "true" ]; then if [ ${ERROR} == "true" ]; then
exit 1 exit 1
fi fi
}
main