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

@ -68,16 +68,19 @@ test-coverage:
stage: test stage: test
script: script:
- make coverage - make coverage
allow_failure: true
test-coverage-report: test-coverage-report:
stage: test stage: test
script: script:
- make coverage_report - make coverage_report
allow_failure: true
test-coverage-report-html: test-coverage-report-html:
stage: test stage: test
script: script:
- make coverage_html - make coverage_html
allow_failure: true
# ************************************************************************/ # ************************************************************************/
# DEPLOY # DEPLOY

View File

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