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

Bump capistrano from 3.16.0 to 3.18.0 #1131

Open
wants to merge 1 commit into
base: v3.5.0
Choose a base branch
from

Bump capistrano from 3.16.0 to 3.18.0

d025bd6
Select commit
Loading
Failed to load commit list.
Open

Bump capistrano from 3.16.0 to 3.18.0 #1131

Bump capistrano from 3.16.0 to 3.18.0
d025bd6
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Jan 18, 2024 in 54m 54s

Build Failed

The build failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #1131 Bump capistrano from 3.16.0 to 3.18.0.
Any changes that have been made to the v3.5.0 branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job ENV OS State
3166.1 MOZ_HEADLESS=1 Linux passed
3166.2 MOZ_HEADLESS=1 Linux failed

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Focal)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "cache": {
    "bundler": true
  },
  "addons": {
    "firefox": "latest"
  },
  "env": [
    "jobs={:MOZ_HEADLESS=>\"1\"}"
  ],
  "services": [
    "xvfb",
    "mysql"
  ],
  "before_install": [
    "export TZ=America/New_York",
    "nvm install node 14.19.2"
  ],
  "before_script": [
    "export DISPLAY=:99.0",
    "cp config/database.yml.example config/database.yml",
    "cp config/sparc_db.yml.example config/sparc_db.yml",
    "cp config/klok_db.yml.example config/klok_db.yml",
    "cp dotenv.example .env",
    "mysql -e 'create database test_sparc_request;'",
    "mysql -e 'create database cwf_test;'",
    "mkdir -p tmp",
    "cd ..",
    "git clone https://github.com/sparc-request/sparc-request.git",
    "cd sparc-request",
    "git checkout v3.10.0",
    "rvm use $(< .ruby-version) --install --binary --fuzzy",
    "export BUNDLE_GEMFILE=$PWD/Gemfile",
    "gem install bundler -v 2.4.22",
    "bundle install --jobs=3 --retry=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle}",
    "cp config/database.yml.example config/database.yml",
    "cp config/fulfillment_db.yml.example config/fulfillment_db.yml",
    "RAILS_ENV=test bundle exec rake db:migrate",
    "cd ../sparc-fulfillment",
    "pwd",
    "mkdir -p public/system/documents",
    "rvm use $(< .ruby-version) --install --binary --fuzzy",
    "export BUNDLE_GEMFILE=$PWD/Gemfile",
    "RAILS_ENV=test bundle exec rake db:migrate",
    "bundle exec rake db:test:prepare",
    "RAILS_ENV=test bundle exec rake assets:precompile"
  ],
  "jobs": {
    "include": [
      {
        "script": [
          "bundle exec rspec spec/api",
          "bundle exec rspec spec/controllers",
          "bundle exec rspec spec/helpers",
          "bundle exec rspec spec/jobs",
          "bundle exec rspec spec/lib",
          "bundle exec rspec spec/models",
          "bundle exec rspec spec/requests"
        ]
      },
      {
        "script": [
          "bundle exec rspec spec/features"
        ]
      }
    ]
  }
}