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 audited from 5.0.2 to 5.4.2 #3191

Closed
wants to merge 1 commit into from

Bump audited from 5.0.2 to 5.4.2

2ff0149
Select commit
Loading
Failed to load commit list.
Closed

Bump audited from 5.0.2 to 5.4.2 #3191

Bump audited from 5.0.2 to 5.4.2
2ff0149
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Nov 15, 2023 in 39m 20s

Build Passed

The build passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #3191 Bump audited from 5.0.2 to 5.4.2.
Any changes that have been made to the v3.12.0 branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job ENV OS State
11335.1 MOZ_HEADLESS=1 Linux passed
11335.2 MOZ_HEADLESS=1 Linux passed
11335.3 MOZ_HEADLESS=1 Linux passed

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/fulfillment_db.yml.example config/fulfillment_db.yml",
    "cp dotenv.example .env",
    "mysql -e 'create database test_sparc_request;'",
    "mysql -e 'create database cwf_test;'",
    "RAILS_ENV=test bundle exec rake db:migrate",
    "bundle exec rake db:test:prepare",
    "cd ..",
    "git clone https://github.com/sparc-request/sparc-fulfillment.git",
    "cd sparc-fulfillment",
    "git checkout v3.4.0",
    "rvm use $(< .ruby-version) --install --binary --fuzzy",
    "export BUNDLE_GEMFILE=$PWD/Gemfile",
    "mkdir -p tmp",
    "bundle install --jobs=3 --retry=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle}",
    "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",
    "RAILS_ENV=test bundle exec rake db:migrate",
    "cd ../sparc-request",
    "rvm use $(< .ruby-version) --install --binary --fuzzy",
    "export BUNDLE_GEMFILE=$PWD/Gemfile",
    "nvm ls",
    "npm install -g yarn",
    "yarn install",
    "RAILS_ENV=test bundle exec rake assets:precompile"
  ],
  "jobs": {
    "include": [
      {
        "script": [
          "bundle exec rspec spec/api",
          "bundle exec rspec spec/extensions",
          "bundle exec rspec spec/jobs",
          "bundle exec rspec spec/helpers",
          "bundle exec rspec spec/mailers",
          "bundle exec rspec spec/lib",
          "bundle exec rspec spec/models",
          "bundle exec rspec spec/views",
          "bundle exec rspec spec/controllers"
        ]
      },
      {
        "script": [
          "bundle exec rspec spec/features/dashboard spec/features/surveyor"
        ]
      },
      {
        "script": [
          "bundle exec rspec spec/features/proper spec/features/catalog_manager"
        ]
      }
    ]
  }
}