Update makefile for broken make target

This commit is contained in:
mdr0id 2019-09-05 18:17:26 -07:00
parent ea3b3c119f
commit 4a2d22ca3a
2 changed files with 7 additions and 3 deletions

View File

@ -67,17 +67,20 @@ build-linux:
test-coverage:
stage: test
script:
- make coverage
- make coverage
allow_failure: true
test-coverage-report:
stage: test
script:
- make coverage_report
allow_failure: true
test-coverage-report-html:
stage: test
script:
- make coverage_html
allow_failure: true
# ************************************************************************/
# DEPLOY

View File

@ -64,8 +64,9 @@ dep:
@go get -v -d ./...
# Build binary
build: #dep
@go build -i -v ${GO_BUILD_FILES}
build:
@go build -i -v ./cmd/ingest
@go build -i -v ./cmd/server
# Install binaries into Go path
install: