Merge pull request #164 from jesseduffield/ci-improvements

CI improvements
This commit is contained in:
Dawid Dziurla 2019-09-04 18:19:50 +02:00 committed by GitHub
commit a3b3c94ed2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 60 deletions

View file

@ -1,11 +1,6 @@
version: 2 version: 2
jobs:
build: build-shared: &build-shared
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: "on"
working_directory: /go/src/github.com/jesseduffield/lazydocker
steps: steps:
- checkout - checkout
- run: - run:
@ -21,11 +16,7 @@ jobs:
- run: - run:
name: Run tests name: Run tests
command: | command: |
./test.sh go test -v -mod=vendor ./...
- run:
name: Push on codecov result
command: |
bash <(curl -s https://codecov.io/bash)
- run: - run:
name: Compile project on every platform name: Compile project on every platform
command: | command: |
@ -36,10 +27,18 @@ jobs:
paths: paths:
- ~/.cache/go-build - ~/.cache/go-build
jobs:
"golang:1.12":
<<: *build-shared
docker:
- image: circleci/golang:1.12
"golang:latest":
<<: *build-shared
docker:
- image: circleci/golang:latest
release: release:
docker: docker:
- image: circleci/golang:1.12 - image: circleci/golang:1.12
working_directory: /go/src/github.com/jesseduffield/lazydocker
steps: steps:
- checkout - checkout
- run: - run:
@ -69,7 +68,8 @@ workflows:
version: 2 version: 2
build: build:
jobs: jobs:
- build - "golang:1.12"
- "golang:latest"
release: release:
jobs: jobs:
- release: - release:

24
test.sh
View file

@ -1,24 +0,0 @@
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
use_go_test=false
if command -v gotest; then
use_go_test=true
fi
for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
if ls $d/*.go &> /dev/null; then
args="-race -coverprofile=profile.out -covermode=atomic $d"
if [ "$use_go_test" == true ]; then
gotest $args
else
go test -mod=vendor $args
fi
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
fi
done