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

Tag filters #337

Merged
merged 1 commit into from
Oct 19, 2023

Add tag filter to song page

f2f2f85
Select commit
Loading
Failed to load commit list.
Merged

Tag filters #337

Add tag filter to song page
f2f2f85
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 19, 2023 in 5m 41s

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 #337 Add tag filter to song page.
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"
    ]
  }
}