mirror of
https://github.com/taigrr/godns
synced 2025-01-18 04:03:25 -08:00
22 lines
309 B
YAML
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
|