chrly/.travis.yml

64 lines
1.8 KiB
YAML
Raw Normal View History

2020-04-06 20:02:10 +05:30
os: linux
dist: xenial
2018-02-16 03:16:20 +05:30
language: go
go:
2020-04-06 19:07:22 +05:30
- "1.14"
2018-02-16 03:16:20 +05:30
stages:
2020-04-06 22:07:05 +05:30
- Tests
- name: Deploy
if: env(TRAVIS_PULL_REQUEST) IS false AND (branch = master OR tag IS present) AND commit_message !~ /(\[skip deploy\])/
2018-02-16 03:16:20 +05:30
2018-02-16 23:28:29 +05:30
install:
2018-02-16 03:16:20 +05:30
- go get -u github.com/golang/dep/cmd/dep
2018-02-16 23:28:29 +05:30
- dep ensure
2018-02-16 03:16:20 +05:30
2020-04-06 22:07:05 +05:30
cache:
directories:
- $GOPATH/pkg/dep
2018-02-16 03:16:20 +05:30
jobs:
include:
2020-04-06 22:07:05 +05:30
# Tests stage
- name: Unit tests
2020-04-06 22:07:05 +05:30
stage: Tests
2020-04-21 04:50:45 +05:30
services:
- redis
2018-02-16 03:16:20 +05:30
script:
2020-04-21 04:50:45 +05:30
- go test -v -race --tags redis -coverprofile=coverage.txt -covermode=atomic ./...
- bash <(curl -s https://codecov.io/bash)
2020-04-21 19:01:36 +05:30
- name: FOSSA
stage: Tests
if: branch = master
2020-04-21 19:01:36 +05:30
before_script:
- curl https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash
script:
- fossa init
- fossa analyze
# Disable until https://github.com/fossas/fossa-cli/issues/596 will be resolved
# - fossa test
# Deploy stage
- name: Docker image
2020-04-06 22:07:05 +05:30
stage: Deploy
services:
- docker
2018-02-16 03:16:20 +05:30
script:
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- export DOCKER_TAG="${TRAVIS_TAG:-dev}"
- export APP_VERSION="${TRAVIS_TAG:-dev-${TRAVIS_COMMIT:0:7}}"
- >
env CGO_ENABLED=0 GOOS=linux GOARCH=amd64
go build
-o release/chrly
-ldflags "-extldflags '-static' -X github.com/elyby/chrly/version.version=$APP_VERSION -X github.com/elyby/chrly/version.commit=$TRAVIS_COMMIT"
main.go
- docker build -t elyby/chrly:$DOCKER_TAG .
- docker push elyby/chrly:$DOCKER_TAG
- |
if [ ! -z ${TRAVIS_TAG:+x} ]; then
docker tag elyby/chrly:$DOCKER_TAG elyby/chrly:latest
docker push elyby/chrly:latest
fi