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

redis tls #273

Merged
merged 5 commits into from
Jan 20, 2025

fix, ship:docker

f101bc5
Select commit
Loading
Failed to load commit list.
Merged

redis tls #273

fix, ship:docker
f101bc5
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Nov 29, 2024 in 5m 53s

Build Failed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #273 redis tls.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in two sequential stages.

Stage 1: Testing time

This stage failed.

Job Ruby ENV OS State
4295.1 3.2.2 PATH=/snap/bin:$PATH Linux failed

Stage 2: 🚢 it to quay.io

This stage passed.

Job ENV OS State
4295.2 PATH=/snap/bin:$PATH Linux passed

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Xenial)
Ruby Version 3.2.2
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "rvm": [
    "3.2.2"
  ],
  "cache": {
    "bundler": true,
    "directories": [
      "${HOME}/perl5",
      "${HOME}/.cache"
    ]
  },
  "env": [
    "global={:PATH=>\"/snap/bin:$PATH\"}"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Testing time",
        "services": [
          "redis",
          "rabbitmq"
        ],
        "addons": {
          "postgresql": "11",
          "apt": {
            "packages": [
              "postgresql-server-dev-11"
            ]
          }
        },
        "before_install": [
          "script/install-sqitch",
          "script/install-partman",
          "eval \"$(perl -I ~/perl5/lib/perl5/ '-Mlocal::lib')\"",
          "bundle config set --local path 'vendor/bundle'",
          "gem install bundler"
        ],
        "before_script": [
          "sudo apt-get install postgresql-contrib-10",
          "sudo systemctl start postgresql",
          "sudo systemctl start redis-server",
          "bundle exec rake setup"
        ]
      },
      {
        "stage": ":ship: it to quay.io",
        "dist": "focal",
        "language": "shell",
        "script": [
          "make ship"
        ],
        "if": "(branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true"
      }
    ]
  }
}