From 7ea0a0e183414039f0f5b363d420061a4accaeab Mon Sep 17 00:00:00 2001 From: Vladimir Hodakov Date: Sat, 2 Mar 2019 18:37:06 +0400 Subject: [PATCH] Add Gitlab CI configuration --- .gitlab-ci.yml | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..53b8db0 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,50 @@ +image: lab.wtfteam.pro:4567/containers/tdlib-go + +stages: + - test + - build + - deploy + +before_script: + - go version + - mkdir -p $GOPATH/src/lab.wtfteam.pro/fat0troll/ + - ln -s $(pwd) $GOPATH/src/lab.wtfteam.pro/fat0troll/fw_zookeeper + - cd $GOPATH/src/lab.wtfteam.pro/fat0troll/fw_zookeeper + +lint: + stage: test + script: + - pwd + - golangci-lint run + +test: + stage: test + script: + - pwd + - go test -test.v -cover `go list ./... | grep -v examples | grep -v internal` + +build: + stage: build + script: + - pwd + - CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -tags netgo -ldflags '-w -extldflags "-static"' + artifacts: + untracked: true + expire_in: 4 hours + paths: + - fw_zookeeper + +deploy: + stage: deploy + only: + - master + before_script: + - apk add --no-cache openssh-client + - mkdir -p ~/.ssh + - echo "$DEPLOY_KEY" | tr -d '\r' > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - eval "$(ssh-agent -s)" + - ssh-add ~/.ssh/id_rsa + - ssh-keyscan -H $DEPLOY_HOST >> ~/.ssh/known_hosts + script: + - scp fw_zookeeper $DEPLOY_USER@$DEPLOY_HOST:/usr/local/bin/