mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 11:40:06 +00:00
Install packages, then build
This commit is contained in:
parent
0a04d23f50
commit
38b1c61acc
@ -1,6 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
# Install all packages - this will make running the suite faster
|
||||
echo "--> Installing packages for faster tests"
|
||||
go install -tags="${GOTAGS}" -a ./...
|
||||
|
||||
# If we are testing the API, build and install consul
|
||||
if grep -q "/consul/api" <<< "${GOFILES}"; then
|
||||
# Create a temp dir and clean it up on exit
|
||||
@ -13,10 +17,6 @@ if grep -q "/consul/api" <<< "${GOFILES}"; then
|
||||
PATH="${TEMPDIR}:${PATH}"
|
||||
fi
|
||||
|
||||
# Install all packages - this will make running the suite faster
|
||||
echo "--> Installing packages for faster tests"
|
||||
go install -tags="${GOTAGS}" -a ./...
|
||||
|
||||
# Run the tests
|
||||
echo "--> Running tests"
|
||||
go test -timeout=360s -parallel=20 -tags="${GOTAGS}" ${GOFILES} ${TESTARGS}
|
||||
|
Loading…
x
Reference in New Issue
Block a user