34 lines
564 B
YAML
34 lines
564 B
YAML
|
stages:
|
||
|
- test
|
||
|
|
||
|
before_script:
|
||
|
- mkdir -p ${GOPATH}/src/gitlab.com/pztrn/
|
||
|
- ln -s $CI_PROJECT_DIR ${GOPATH}/src/gitlab.com/pztrn/flagger
|
||
|
- cd ${GOPATH}/src/gitlab.com/pztrn/flagger
|
||
|
|
||
|
test:1.11:
|
||
|
image: golang:1.11.3
|
||
|
stage: test
|
||
|
tags:
|
||
|
- docker
|
||
|
script:
|
||
|
- pwd
|
||
|
- go test -test.v -cover ./...
|
||
|
|
||
|
test:1.10:
|
||
|
image: golang:1.10.6
|
||
|
stage: test
|
||
|
tags:
|
||
|
- docker
|
||
|
script:
|
||
|
- pwd
|
||
|
- go test -test.v -cover ./...
|
||
|
|
||
|
test:1.9:
|
||
|
image: golang:1.9.7
|
||
|
stage: test
|
||
|
tags:
|
||
|
- docker
|
||
|
script:
|
||
|
- pwd
|
||
|
- go test -test.v -cover ./...
|