mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-23 15:41:02 +00:00
ci: improvements
- delete codecov stuff - run simple go test - no working directory - no environment variables - test on circleci/golang:latest too - remove test.sh file
This commit is contained in:
parent
14abd94cd0
commit
d4b237308a
2 changed files with 2 additions and 33 deletions
|
|
@ -3,9 +3,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/golang:1.12
|
- image: circleci/golang:1.12
|
||||||
environment:
|
- image: circleci/golang:latest
|
||||||
GO111MODULE: "on"
|
|
||||||
working_directory: /go/src/github.com/jesseduffield/lazydocker
|
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run:
|
- run:
|
||||||
|
|
@ -21,11 +19,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: |
|
||||||
|
|
@ -39,7 +33,6 @@ jobs:
|
||||||
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:
|
||||||
|
|
|
||||||
24
test.sh
24
test.sh
|
|
@ -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
|
|
||||||
Loading…
Add table
Reference in a new issue