1
0
Fork 0

add basic gitlab ci

This commit is contained in:
Sean Sube 2018-01-21 21:53:05 -06:00
parent 926aa3f6ca
commit 34ae1ef7ff
1 changed files with 39 additions and 0 deletions

39
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,39 @@
# build the go app, then wrap it in an image
stages:
- build
- image
build:app:
stage: build
image: golang:1.6
tags:
- runner:k8s
script:
- go get
- go build
artifacts:
paths:
- home-dns
expire_in: 1 hour
build:image:
stage: image
image: docker
services:
- docker:dind
tags:
- runner:k8s
script:
# prep secrets
- mkdir /root/.docker
- ln -s /secrets/docker /root/.docker/config.json
- docker info
# build it
- docker build -t $IMAGE_TAG .
- docker push $IMAGE_TAG
dependencies:
- build:app
variables:
DOCKER_DRIVER: overlay2
DOCKER_HOST: tcp://localhost:2375
IMAGE_TAG: ssube/home-dns:$CI_COMMIT_REF_SLUG