dnsupdater/.gitlab-ci.yml

18 lines
247 B
YAML
Raw Normal View History

2020-10-26 09:42:07 +00:00
stages:
2020-10-26 17:50:50 +00:00
- test
2020-10-26 09:42:07 +00:00
- build
2020-10-26 17:50:50 +00:00
test:
stage: test
image: golang:1.15.3-alpine3.12
2020-10-26 09:42:07 +00:00
script:
2020-10-26 17:50:50 +00:00
- go test ./...
2020-10-26 16:46:59 +00:00
2020-10-26 17:50:50 +00:00
build:
stage: build
2020-10-26 16:46:59 +00:00
image: docker:latest
2020-10-26 17:50:50 +00:00
services:
- docker:dind
2020-10-26 16:46:59 +00:00
script:
2020-10-26 17:50:50 +00:00
docker build -t llehouerou/dnsupdater:latest