Closes #557: Travis deploy

This commit is contained in:
Andrey Meshkov 2019-01-25 22:12:48 +03:00
parent 0161509b5f
commit 4b4cb99b30
3 changed files with 54 additions and 19 deletions

4
.gitignore vendored
View File

@ -2,9 +2,11 @@
/.vscode /.vscode
/.idea /.idea
/AdGuardHome /AdGuardHome
/AdGuardHome.exe
/AdGuardHome.yaml /AdGuardHome.yaml
/data/ /data/
/build/ /build/
/dist/
/client/node_modules/ /client/node_modules/
/querylog.json /querylog.json
/querylog.json.1 /querylog.json.1
@ -13,4 +15,4 @@
# Test output # Test output
dnsfilter/tests/top-1m.csv dnsfilter/tests/top-1m.csv
dnsfilter/tests/dnsfilter.TestLotsOfRules*.pprof dnsfilter/tests/dnsfilter.TestLotsOfRules*.pprof

View File

@ -1,15 +1,9 @@
language: go language: go
sudo: false sudo: false
go: go:
- 1.11.x - 1.11.x
- 1.x - 1.x
cache:
directories:
- $HOME/.cache/go-build
- $HOME/gopath/pkg/mod
- $HOME/Library/Caches/go-build
os: os:
- linux - linux
- osx - osx
@ -21,6 +15,12 @@ before_install:
install: install:
- npm --prefix client install - npm --prefix client install
cache:
directories:
- $HOME/.cache/go-build
- $HOME/gopath/pkg/mod
- $HOME/Library/Caches/go-build
script: script:
- node -v - node -v
- npm -v - npm -v
@ -31,4 +31,34 @@ script:
- make - make
after_success: after_success:
- bash <(curl -s https://codecov.io/bash) - bash <(curl -s https://codecov.io/bash)
matrix:
include:
# Release build configuration
- name: release
go:
- 1.11.x
os:
- linux
script:
- node -v
- npm -v
# Run tests just in case
- go test -race -v -bench=. ./...
# Prepare releases
- ./release.sh
- ls -l dist
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file:
- dist/AdGuardHome_*
on:
repo: AdguardTeam/AdGuardHome
tags: true
draft: true
file_glob: true
skip_cleanup: true

View File

@ -9,23 +9,26 @@ version=`git describe --abbrev=4 --dirty --always --tags`
f() { f() {
make cleanfast; CGO_DISABLED=1 make make cleanfast; CGO_DISABLED=1 make
if [[ $GOOS == darwin ]]; then if [[ $GOOS == darwin ]]; then
rm -f ../AdGuardHome_"$version"_MacOS.zip zip dist/AdGuardHome_"$version"_MacOS.zip AdGuardHome README.md LICENSE.txt
zip ../AdGuardHome_"$version"_MacOS.zip AdGuardHome README.md LICENSE.TXT
elif [[ $GOOS == windows ]]; then elif [[ $GOOS == windows ]]; then
rm -f ../AdGuardHome_"$version"_Windows.zip zip dist/AdGuardHome_"$version"_Windows.zip AdGuardHome.exe README.md LICENSE.txt
zip ../AdGuardHome_"$version"_Windows.zip AdGuardHome.exe README.md LICENSE.TXT
else else
pushd .. tar zcvf dist/AdGuardHome_"$version"_"$GOOS"_"$GOARCH".tar.gz AdGuardHome README.md LICENSE.txt
tar zcvf AdGuardHome_"$version"_"$GOOS"_"$GOARCH".tar.gz AdGuardHome/{AdGuardHome,LICENSE.TXT,README.md}
popd
fi fi
} }
#make clean # Clean and rebuild both static and binary
#make make clean
make
# Prepare the dist folder
rm -rf dist
mkdir -p dist
# Prepare releases
GOOS=darwin GOARCH=amd64 f GOOS=darwin GOARCH=amd64 f
GOOS=linux GOARCH=amd64 f GOOS=linux GOARCH=amd64 f
GOOS=linux GOARCH=386 f GOOS=linux GOARCH=386 f
GOOS=linux GOARCH=arm GOARM=6 f GOOS=linux GOARCH=arm GOARM=6 f
GOOS=linux GOARCH=arm64 GOARM=6 f GOOS=linux GOARCH=arm64 GOARM=6 f
GOOS=windows GOARCH=amd64 f GOOS=windows GOARCH=amd64 f