1
Fork 0

Remove Gitlab CI config file

master 1.0.0
Vladimir Hodakov 2019-10-08 06:20:52 +04:00
parent 5ba14d98c3
commit 1556d19593
Signed by: Vladimir Hodakov
GPG Key ID: 673980B6882F82C6
1 changed files with 0 additions and 50 deletions

View File

@ -1,50 +0,0 @@
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_helper
- cd $GOPATH/src/lab.wtfteam.pro/fat0troll/fw_zookeeper_helper
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=1 GOOS=linux GOARCH=amd64 go build -ldflags '-w -extldflags "-static"'
artifacts:
untracked: true
expire_in: 4 hours
paths:
- fw_zookeeper_helper
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_helper $DEPLOY_USER@$DEPLOY_HOST:/usr/local/bin/