Merge master
This commit is contained in:
commit
09b49d0145
|
@ -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
|
||||||
|
|
|
@ -79,5 +79,3 @@ matrix:
|
||||||
- ./build_docker.sh
|
- ./build_docker.sh
|
||||||
after_script:
|
after_script:
|
||||||
- docker images
|
- docker images
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,9 @@
|
||||||
<a href="https://goreportcard.com/report/AdguardTeam/AdGuardHome">
|
<a href="https://goreportcard.com/report/AdguardTeam/AdGuardHome">
|
||||||
<img src="https://goreportcard.com/badge/github.com/AdguardTeam/AdGuardHome" alt="Go Report Card" />
|
<img src="https://goreportcard.com/badge/github.com/AdguardTeam/AdGuardHome" alt="Go Report Card" />
|
||||||
</a>
|
</a>
|
||||||
|
<a href="https://golangci.com/r/github.com/AdguardTeam/AdGuardHome">
|
||||||
|
<img src="https://golangci.com/badges/github.com/AdguardTeam/AdGuardHome.svg" alt="GolangCI" />
|
||||||
|
</a>
|
||||||
<a href="https://github.com/AdguardTeam/AdGuardHome/releases">
|
<a href="https://github.com/AdguardTeam/AdGuardHome/releases">
|
||||||
<img src="https://img.shields.io/github/release/AdguardTeam/AdGuardHome/all.svg" alt="Latest release" />
|
<img src="https://img.shields.io/github/release/AdguardTeam/AdGuardHome/all.svg" alt="Latest release" />
|
||||||
</a>
|
</a>
|
||||||
|
|
21
release.sh
21
release.sh
|
@ -9,20 +9,23 @@ 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
|
||||||
|
|
Loading…
Reference in New Issue