mirror of
https://github.com/octoleo/restic.git
synced 2024-11-06 05:17:50 +00:00
15 lines
588 B
Bash
15 lines
588 B
Bash
|
#!/bin/bash
|
||
|
GITBRANCH=`git rev-parse --abbrev-ref HEAD`
|
||
|
#We intend to only run gas on release branches.
|
||
|
if [ "master" != $GITBRANCH ]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
REALEXITSTATUS=0
|
||
|
go get -u github.com/HewlettPackard/gas
|
||
|
gas -skip=*/arm/*/models.go -skip=*/management/examples/*.go -skip=*vendor* -skip=*/Gododir/* ./... | tee /dev/stderr
|
||
|
REALEXITSTATUS=$(($REALEXITSTATUS+$?))
|
||
|
gas -exclude=G101 ./arm/... ./management/examples/... | tee /dev/stderr
|
||
|
REALEXITSTATUS=$(($REALEXITSTATUS+$?))
|
||
|
gas -exclude=G204 ./Gododir/... | tee /dev/stderr
|
||
|
REALEXITSTATUS=$(($REALEXITSTATUS+$?))
|
||
|
exit $REALEXITSTATUS
|