Browse Source

Update makefile for broken make target

service_pr
mdr0id 5 years ago
parent
commit
4a2d22ca3a
  1. 5
      .gitlab-ci.yml
  2. 5
      Makefile

5
.gitlab-ci.yml

@ -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

5
Makefile

@ -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:

Loading…
Cancel
Save