Create chaosmonkey #103
Open
Create chaosmonkey #103
Travis CI / Travis CI - Pull Request
succeeded
Dec 1, 2024 in 1m 32s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #103 Create chaosmonkey.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Go |
Operating System | Linux (Xenial) |
Go Version | 1.20.x |
Build Configuration
{
"language": "go",
"os": [
"linux"
],
"dist": "xenial",
"sudo": true,
"go": [
"1.20.x"
],
"env": [
"jobs={:DEPLOY_DOCS=>\"\\\"$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)\\\"\"}"
],
"services": [
"docker"
],
"install": [
"docker pull mysql:8.0",
"go install golang.org/x/lint/golint@latest",
"go install github.com/kisielk/errcheck@latest",
"go get github.com/spf13/[email protected]",
"go get github.com/fsnotify/[email protected]"
],
"script": [
"sudo service mysql stop",
"diff -u <(echo -n) <(gofmt -d `find . -name '*.go' | grep -Ev '/vendor/|/migration'`)",
"go list ./... | grep -Ev '/vendor/|/migration' | xargs -L1 golint",
"go vet `go list ./... | grep -v /vendor/`",
"errcheck -ignore 'io:Close' -ignoretests `go list ./... | grep -v /vendor/`",
"go test -v ./..."
],
"after_success": [
"./update-docs.sh"
]
}
Loading