您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
steem-block-db/.gitlab-ci.yml

30 行
486 B

image: golang:1.11
cache:
paths:
- /apt-cache
- /go/src/github.com
- /go/src/golang.org
- /go/src/google.golang.org
- /go/src/gopkg.in
stages:
- test
- build
before_script:
- mkdir /go/src/steem-block-db
- cp $CI_PROJECT_DIR/*.go /go/src/steem-block-db
- cd /go/src/steem-block-db
- GOPATH=/go go get
#unit_tests:
# stage: test
# script:
# - make test
build:
stage: build
script:
- cd /go/src/steem-block-db
- GOPATH=/go go build