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

Merge sandbox into development #582

Merged
merged 13 commits into from
Jun 20, 2023

Merge branch 'develop' into merge-sandbox-into-development

b6892bb
Select commit
Loading
Failed to load commit list.
Merged

Merge sandbox into development #582

Merge branch 'develop' into merge-sandbox-into-development
b6892bb
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jun 20, 2023 in 2m 13s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the merge-sandbox-into-development 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 (Bionic)
Ruby Version 3.2.2
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "rvm": [
    "3.2.2"
  ],
  "env": [
    "global={:RAILS_ENV=>\"test\"}={:CF_USER=>\"$deploy_username\"}={:CF_ORG=>\"$deploy_org_name\"}={:CF_PASS=>\"$deploy_password\"}={:CC_TEST_REPORTER_ID=>\"$CC_TEST_REPORTER_ID\"}={:CF_SPACE=>\"$SPACE\"} jobs={:API_ROOT=>\"$deploy_api_uri\"}"
  ],
  "services": [
    "postgresql"
  ],
  "addons": {
    "postgresql": "11"
  },
  "install": [
    "bundle install --jobs=3 --retry=3"
  ],
  "before_script": [
    "sudo apt-get -qq update",
    "sudo apt-get install -y postgresql-11-postgis-2.5",
    "psql -U postgres -c 'create database cii_test'",
    "psql -U postgres -d cii_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",
    "bundle exec rubocop"
  ],
  "before_deploy": [
    "echo \"install cloudfoundry cli\"",
    "wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -",
    "echo \"deb https://packages.cloudfoundry.org/debian stable main\" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list",
    "sudo apt-get -qq update",
    "sudo apt-get install cf7-cli"
  ],
  "deploy": [
    {
      "provider": "script",
      "script": "bash CF/deploy-app.sh -u $CF_USER -o $CF_ORG -p $CF_PASS -s $CF_SPACE",
      "on": {
        "all_branches": true,
        "condition": [
          "$SPACE =~ ^(development|testing|integration|nft|uat|pre-production|sandbox|production)$"
        ]
      }
    }
  ],
  "after_script": [
    "./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
  ]
}