gonextcloud/.gitlab-ci.yml
2018-10-08 16:40:39 +00:00

42 lines
780 B
YAML

image: golang:1.9
stages:
- test
before_script:
- go get -u golang.org/x/lint/golint
- go get -u github.com/kardianos/govendor
- mkdir -p /go/src/gitlab.adphi.fr/partitio/Nextcloud-Partitio
- cp -r $CI_PROJECT_DIR /go/src/gitlab.adphi.fr/partitio/Nextcloud-Partitio
- cd /go/src/gitlab.adphi.fr/partitio/Nextcloud-Partitio/gonextcloud
- sed -i -e 's/$NEXTCLOUD_URL/'${NEXTCLOUD_URL//\//\\/}'/g' config.yml
- sed -i -e 's/$NEXTCLOUD_PASSWORD/'${NEXTCLOUD_PASSWORD}'/g' config.yml
- make dep
unit_tests:
stage: test
tags:
- docker
script:
- make test
race_detector:
stage: test
tags:
- docker
script:
- make race
code_coverage:
stage: test
tags:
- docker
script:
- make coverage
lint_code:
stage: test
tags:
- docker
script:
- make lint