You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
268 B
13 lines
268 B
2 months ago
|
#!/usr/bin/env bash
|
||
|
RUN_NAME="feed"
|
||
|
|
||
|
mkdir -p output/bin
|
||
|
cp script/* output/
|
||
|
chmod +x output/bootstrap.sh
|
||
|
|
||
|
if [ "$IS_SYSTEM_TEST_ENV" != "1" ]; then
|
||
|
go build -o output/bin/${RUN_NAME}
|
||
|
else
|
||
|
go test -c -covermode=set -o output/bin/${RUN_NAME} -coverpkg=./...
|
||
|
fi
|