Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump rubocop-rails from 2.19.1 to 2.21.2 #531

Merged
merged 4 commits into from
Oct 4, 2023

Run rubocop

10b71d4
Select commit
Loading
Failed to load commit list.
Merged

build(deps-dev): bump rubocop-rails from 2.19.1 to 2.21.2 #531

Run rubocop
10b71d4
Select commit
Loading
Failed to load commit list.
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"
  ]
}