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

PRODUCTION - Release 1.7.0 #542

Merged
merged 42 commits into from
Oct 12, 2023

When redirecting to PMP, allow_other_host

450aae5
Select commit
Loading
Failed to load commit list.
Merged

PRODUCTION - Release 1.7.0 #542

When redirecting to PMP, allow_other_host
450aae5
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 12, 2023 in 2m 19s

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 #542 Release 1.7.0.
Any changes that have been made to the main 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"
  ]
}