1
0
Fork 0

clean up ci manifest

This commit is contained in:
Sean Sube 2018-01-21 22:12:21 -06:00
parent 34ae1ef7ff
commit 3f8d0beac8
4 changed files with 12 additions and 7 deletions

9
.gitignore vendored
View File

@ -4,9 +4,6 @@
*.so
*.dylib
# Normal binary
home-dns
# Test binary, build with `go test -c`
*.test
@ -16,5 +13,11 @@ home-dns
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/
# Misc Go
bin/
pkg/
src/github.com/
src/gopkg.in/
# Config files
config.yml

View File

@ -9,12 +9,14 @@ build:app:
tags:
- runner:k8s
script:
- go get
- go build
- go get home-dns
- go build home-dns
artifacts:
paths:
- home-dns
- bin/home-dns
expire_in: 1 hour
variables:
GOPATH: "${CI_PROJECT_DIR}"
build:image:
stage: image

View File

@ -1,5 +1,5 @@
FROM apextoaster/base
ADD ./home-dns /app/home-dns
ADD ./bin/home-dns /app/home-dns
CMD /app/home-dns /app/config.yml