1
0
mirror of https://github.com/taigrr/godns synced 2025-01-18 04:03:25 -08:00
godns/.gitlab-ci.yml
2016-05-11 15:23:36 +08:00

22 lines
309 B
YAML

stages:
- init
- build
- test
init-env:
stage: init
script:
- export CURRENT_BUILD_PATH=/builds/timothy/godns
build-my-project:
stage: build
script:
- cd $CURRENT_BUILD_PATH
- go get
- go build
test-my-project:
stage: test
script:
- cd $CURRENT_BUILD_PATH
- go test