build(deps-dev): bump rubocop-rails from 2.19.1 to 2.21.2 #531
This check has been archived and is scheduled for deletion.
Learn more about checks retention
Travis CI / Travis CI - Pull Request
succeeded
Oct 3, 2023 in 2m 20s
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 #531 build(deps-dev): bump rubocop-rails from 2.19.1 to 2.21.2.
Any changes that have been made to the develop 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 | Ruby |
Operating System | Linux (Bionic) |
Ruby Version | 3.2.1 |
Build Configuration
{
"language": "ruby",
"os": [
"linux"
],
"dist": "bionic",
"rvm": [
"3.2.1"
],
"deploy": [
{
"deployment_strategy": "rolling",
"provider": "cloudfoundry",
"edge": true,
"api": "$API_URI",
"username": "$USERNAME",
"password": "$PASSWORD",
"organization": "$ORG_NAME",
"space": "$SPACE_NAME",
"manifest": "manifest.$SPACE_NAME.yaml",
"on": {
"repo": "Crown-Commercial-Service/pmp-idam",
"all_branches": true,
"condition": [
"$DEPLOY_BRANCH = TRUE"
]
}
}
],
"branches": {
"only": [
"develop",
"staging",
"main"
]
},
"env": [
"global={:RAILS_ENV=>\"test\"}={:CC_TEST_REPORTER_ID=>\"$CC_TEST_REPORTER_ID\"}"
],
"services": [
"postgresql"
],
"addons": {
"postgresql": "11"
},
"before_script": [
"sudo apt-get -qq update",
"sudo apt-get install -y postgresql-11-postgis-2.5",
"psql -U postgres -c 'create database pmp_idam_test'",
"psql -U postgres -d pmp_idam_test -c 'create extension postgis'",
"curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter",
"chmod +x ./cc-test-reporter",
"./cc-test-reporter before-build"
],
"script": [
"bundle exec rake db:setup",
"bundle exec rake"
],
"after_script": [
"./cc-test-reporter after-build --debug --exit-code $TRAVIS_TEST_RESULT"
]
}
Loading