From e83d23555c2f00a9d0046fccca9c27a3cf83e861 Mon Sep 17 00:00:00 2001 From: Noah Zoschke Date: Fri, 26 Jan 2018 08:55:12 -0800 Subject: [PATCH] customize build --- bios.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bios.sh b/bios.sh index 1250f42..772ccd3 100755 --- a/bios.sh +++ b/bios.sh @@ -5,8 +5,10 @@ mkdir -p src/$PKG && cd src/$PKG run -s "Cloning" git clone $URL --branch $REF --single-branch . git reset --hard $SHA -PKGS=$(go list $PKG/...) +go get github.com/russross/blackfriday + +PKGS=$(go list $PKG/... | grep -v examples) run -s "Linting" golint -set_exit_status $PKGS run -s "Vetting" go vet -x $PKGS -run -s "Building" go build -v $PKGS +run -s "Building" tools/build run -s "Testing" go test -v $PKGS