Add Gitlab CI configuration
This commit is contained in:
parent
89a4edb13f
commit
7ea0a0e183
50
.gitlab-ci.yml
Normal file
50
.gitlab-ci.yml
Normal file
@ -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/
|
Reference in New Issue
Block a user