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

Asset cleanup #326

Merged
merged 1 commit into from
Oct 7, 2023

Asset cleanup

053369b
Select commit
Loading
Failed to load commit list.
Merged

Asset cleanup #326

Asset cleanup
053369b
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 7, 2023 in 5m 24s

Build Passed

The build passed. This is a change from the previous build, which failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #326 Asset cleanup.
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 (Focal)
Ruby Version 3.2.2
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "rvm": [
    "3.2.2"
  ],
  "cache": {
    "bundler": true
  },
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "services": [
    "xvfb"
  ],
  "addons": {
    "postgresql": "12",
    "chrome": "stable",
    "apt": {
      "update": true,
      "packages": [
        "postgresql-12",
        "google-chrome-stable"
      ]
    }
  },
  "env": [
    "global={:PGUSER=>\"postgres\"}={:PGPORT=>\"5432\"}={:PGHOST=>\"localhost\"}"
  ],
  "before_install": [
    "sudo apt-get -y install libsndfile-dev",
    "sudo sed -i -e '/local.*peer/s/postgres/all/' -e 's/peer\\|md5/trust/g' /etc/postgresql/*/main/pg_hba.conf",
    "sudo service postgresql restart",
    "sleep 1",
    "postgres --version",
    "psql -c 'create database phishin_test;' -U postgres",
    "gem update --system --no-document",
    "gem install bundler --no-document"
  ],
  "install": [
    "bundle install",
    "yarn install"
  ],
  "script": [
    "bundle exec rubocop",
    "bundle exec rails assets:precompile",
    "bundle exec rspec"
  ],
  "after_script": [
    "./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
  ],
  "branches": {
    "only": [
      "main"
    ]
  }
}