Use vendored modules

Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/aya/trunk@67 cec141ff-132a-4243-88a5-ce187bd62f94
This commit is contained in:
yakumo.izuru
2023-07-23 13:18:53 +00:00
parent f9e72ef011
commit 49698b201a
739 changed files with 277774 additions and 15 deletions

39
vendor/github.com/yosssi/gcss/wercker.yml generated vendored Normal file
View File

@@ -0,0 +1,39 @@
box: yosssi/golang-latest@1.0.7
# Build definition
build:
# The steps that will be executed on build
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
- script:
name: go get
code: |
cd $WERCKER_SOURCE_DIR
go version
go get -t ./...
# Build the project
- script:
name: go build
code: |
go build ./...
# Test the project
- script:
name: go test
code: |
go test -cover -race ./...
# Invoke goveralls
- script:
name: goveralls
code: |
go get github.com/axw/gocov/gocov
go get github.com/mattn/goveralls
echo "mode: count" > all.cov
packages=(. cmd/gcss)
for package in ${packages[@]}; do go test --covermode=count -coverprofile=$package.cov ./$package; sed -e "1d" $package.cov >> all.cov; done
GIT_BRANCH=$WERCKER_GIT_BRANCH goveralls -coverprofile=all.cov -service=wercker.com -repotoken $COVERALLS_REPO_TOKEN