Bump golang.org/x/net from 0.0.0-20200421231249-e086a090c8fd to 0.23.0 #183
Travis CI / Travis CI - Branch
failed
Nov 19, 2024 in 2m 35s
Build Failed
The build failed. This is a change from the previous build, which passed.
Details
This is a normal build for the dependabot/go_modules/golang.org/x/net-0.23.0 branch. You should be able to reproduce it by checking out the branch locally.
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 (Jammy) |
Go Version | 1.20 |
Build Configuration
{
"language": "go",
"os": [
"linux"
],
"dist": "jammy",
"go": [
"1.20"
],
"before_install": [
"go install github.com/mattn/goveralls@latest",
"go install github.com/wadey/gocovmerge@latest",
"$TRAVIS_BUILD_DIR/travis/install_gcloud.sh",
"source \"${HOME}/google-cloud-sdk/path.bash.inc\"",
"echo $TEST_SERVICE_ACCOUNT_mlab_testing | base64 -d > travis-testing.json",
"gcloud auth activate-service-account --key-file=travis-testing.json",
"echo Branch is ${TRAVIS_BRANCH} and Tag is $TRAVIS_TAG",
"echo EVENT_TYPE is ${TRAVIS_EVENT_TYPE}",
"if [[ ${TRAVIS_EVENT_TYPE} == cron ]]; then TEST_TAGS=integration; fi;",
"echo TEST_TAGS is ${TEST_TAGS}"
],
"cache": {
"directories": [
"$HOME/google-cloud-sdk/"
]
},
"script": [
"export GOOGLE_APPLICATION_CREDENTIALS=$TRAVIS_BUILD_DIR/travis-testing.json",
"go test -covermode=count -coverprofile=_coverage.cov -v ./...",
"go test -covermode=count -coverprofile=_bqext.cov -v ./cloud/bqx -tags=$TEST_TAGS",
"go get -t github.com/m-lab/uuid/...",
"go vet github.com/m-lab/uuid/..."
],
"after_script": [
"$HOME/gopath/bin/gocovmerge *.cov > __merged.cov",
"$HOME/gopath/bin/goveralls -coverprofile=__merged.cov -service=travis-pro"
]
}
Loading