2018-06-07 17:16:51 +08:00
|
|
|
stages:
|
|
|
|
- build-src
|
|
|
|
- build-docker
|
|
|
|
- go-test
|
|
|
|
|
|
|
|
build-src:
|
|
|
|
stage: build-src
|
|
|
|
image: debian:buster
|
2018-06-08 16:33:45 +08:00
|
|
|
variables:
|
|
|
|
GOPATH: $CI_PROJECT_DIR
|
2018-06-07 17:16:51 +08:00
|
|
|
script:
|
|
|
|
- apt update
|
|
|
|
- apt install -y curl gnupg git make golang
|
|
|
|
- curl -sL https://deb.nodesource.com/setup_10.x | bash -
|
|
|
|
- apt update
|
|
|
|
- apt install -y nodejs
|
|
|
|
- npm install -g html-minifier uglify-js sass
|
2018-06-08 16:33:45 +08:00
|
|
|
- mkdir -p src/gitlab.com/commento && cd src/gitlab.com/commento && ln -s $CI_PROJECT_DIR && cd $CI_PROJECT_NAME
|
2018-06-07 17:16:51 +08:00
|
|
|
- make devel
|
|
|
|
- make prod
|
|
|
|
|
|
|
|
build-docker:
|
|
|
|
stage: build-docker
|
|
|
|
image: docker:stable
|
|
|
|
script:
|
|
|
|
- docker build -t commento-ce .
|
|
|
|
|
|
|
|
go-test:
|
|
|
|
stage: go-test
|
|
|
|
image: golang:1.10.2
|
|
|
|
services:
|
|
|
|
- postgres:latest
|
|
|
|
variables:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_DB: commento_test
|
|
|
|
COMMENTO_POSTGRES: postgres://postgres:postgres@postgres/commento_test?sslmode=disable
|
|
|
|
script:
|
|
|
|
- cd api
|
|
|
|
- (go get -v . || true) # TODO: remove this ugly hack
|
|
|
|
- go test -v .
|