Update .travis.yml for build config #266
Open
Travis CI / Travis CI - Branch
required action
Jan 3, 2024 in 3m 23s
Build Errored
The build errored, just like the previous build.
Details
This is a normal build for the build-config-update 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 | Ruby |
Operating System | Linux (Xenial) |
Ruby Version | 2.4.10 |
Build Configuration
{
"language": "ruby",
"os": [
"linux"
],
"dist": "xenial",
"rvm": [
"2.4.10"
],
"cache": {
"bundler": true
},
"env": [
"global={:PATH=>\"/snap/bin:$PATH\"}={:COVERAGE=>\"1\"}"
],
"addons": {
"apt": {
"packages": [
"rabbitmq-server"
]
},
"postgresql": "9.6"
},
"services": [
"memcached",
"redis",
"rabbitmq"
],
"before_install": [
"gem install rubygems-update -v 3.3.27",
"bundle config https://gems.contribsys.com/ $BUNDLE_GEMS__CONTRIBSYS__COM",
"gem install bundler -v 2.3.26"
],
"jobs": {
"include": [
{
"stage": "testing time",
"script": [
"bundle exec rspec"
]
},
{
"stage": ":ship: it to quay.io",
"dist": "bionic",
"services": [
],
"addons": {
"snaps": [
{
"name": "docker",
"channel": "latest/beta"
}
]
},
"before_install": [
"echo \"skipping\""
],
"install": [
"echo \"skipping\""
],
"script": [
"make ship"
],
"if": "(branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true",
"before_script": [
"skip"
]
}
]
},
"before_script": [
"createdb travis_test || true",
"curl -fs https://raw.githubusercontent.com/travis-ci/travis-migrations/master/db/main/structure.sql | psql travis_test"
]
}
Loading