Skip to content

last_activity_at for users #301

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

last_activity_at for users

f1fb0aa
Select commit
Loading
Failed to load commit list.
Open

last_activity_at for users #301

last_activity_at for users
f1fb0aa
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Feb 7, 2025 in 2m 15s

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 #301 last_activity_at for users.
Any changes that have been made to the master 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 (Xenial)
Ruby Version 3.2.2
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "services": [
    "postgresql"
  ],
  "addons": {
    "postgresql": "11"
  },
  "cache": {
    "directories": [
      "vendor/bundle"
    ]
  },
  "rvm": [
    "3.2.2"
  ],
  "env": [
    "RAILS_ENV=test"
  ],
  "before_install": [
    "gem install rubygems-update -v 3.3.27"
  ],
  "before_script": [
    "cp db/main/structure.sql db/main/structure-original.sql",
    "cp config/database.yml.travis config/database.yml"
  ],
  "after_success": [
    "script/upload_structure.rb"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Testing time",
        "dist": "focal",
        "language": "ruby",
        "addons": {
          "postgresql": "11",
          "apt": {
            "sources": [
              {
                "sourceline": "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main",
                "key_url": "https://www.postgresql.org/media/keys/ACCC4CF8.asc"
              }
            ],
            "packages": [
              "postgresql-11",
              "postgresql-client-11"
            ]
          }
        },
        "before_install": [
          "gem update --system",
          "sudo sed -i -e '/local.*peer/s/postgres/all/' -e 's/peer\\|md5/trust/g' /etc/postgresql/11/main/pg_hba.conf",
          "sudo sed -i -e 's/^port = 5433/port = 5432/' /etc/postgresql/11/main/postgresql.conf",
          "sudo systemctl restart postgresql@11-main"
        ],
        "before_script": [
          "psql --version",
          "psql -c 'CREATE DATABASE travis_test;'",
          "curl -fs https://raw.githubusercontent.com/travis-ci/travis-migrations/master/db/main/structure.sql | psql -v ON_ERROR_STOP=1 travis_test"
        ],
        "script": [
          "bundle exec rspec spec"
        ]
      },
      {
        "stage": "Ship to Quay.io",
        "dist": "focal",
        "before_script": [
          "echo skip"
        ],
        "after_success": [
          "echo skip"
        ],
        "script": [
          "make ship"
        ],
        "if": "(branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true"
      }
    ]
  }
}