16 lines
317 B
YAML
16 lines
317 B
YAML
|
image: knightswarm/gobuild:1.6
|
||
|
|
||
|
before_script:
|
||
|
- go get github.com/tools/godep
|
||
|
- export GOPATH=$(pwd)
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
|
||
|
compile:
|
||
|
stage: build
|
||
|
script:
|
||
|
- export DEB_SIMPLE_VERSION=`grep "var VERSION" main.go | awk -F\" '{print $2}'`
|
||
|
- godep restore
|
||
|
- chmod +x ./ci/package.sh
|
||
|
- ./ci/package.sh
|