Skip to content

Revert "fix bundler deployment flag in CI"

042aa85
Select commit
Loading
Failed to load commit list.
Open

[TBT-456] Update rack, rexml, puma #282

Revert "fix bundler deployment flag in CI"
042aa85
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Dec 4, 2025 in 2m 38s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the tbt-456-update-high-cve-gems branch. You should be able to reproduce it by checking out the branch locally.

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",
  "group": "edge",
  "rvm": [
    "3.2.2"
  ],
  "cache": {
    "bundler": true
  },
  "env": [
    "global={:PATH=>\"/snap/bin:$PATH\"}={:COVERAGE=>\"1\"}"
  ],
  "addons": {
    "apt": {
      "packages": [
        "rabbitmq-server"
      ]
    }
  },
  "services": [
    "memcached",
    "redis",
    "rabbitmq"
  ],
  "before_install": [
    "sudo apt-get install -yq --no-install-suggests --no-install-recommends postgresql-common",
    "sudo service postgresql stop",
    "sudo apt install -yq --no-install-suggests --no-install-recommends postgresql-11 postgresql-client-11",
    "sed -e 's/^port.*/port = 5432/' /etc/postgresql/11/main/postgresql.conf > postgresql.conf",
    "sudo chown postgres postgresql.conf",
    "sudo mv postgresql.conf /etc/postgresql/11/main",
    "sudo cp /etc/postgresql/{10,11}/main/pg_hba.conf",
    "sudo service postgresql stop",
    "sudo systemctl start postgresql@11-main",
    "gem uninstall -v '>=2' -i $(rvm gemdir)@global -ax bundler || true",
    "gem install bundler -v '2.3.7'",
    "bundle config https://gems.contribsys.com/ $BUNDLE_GEMS__CONTRIBSYS__COM",
    "gem install bundler -v 2.4.14"
  ],
  "jobs": {
    "include": [
      {
        "stage": "testing time",
        "script": [
          "bundle exec rspec"
        ]
      },
      {
        "stage": ":ship: it to quay.io",
        "dist": "focal",
        "services": [
    ],
    "before_install": [
      "echo \"skipping\""
    ],
    "install": [
      "echo \"skipping\""
    ],
    "script": [
      "make ship"
    ],
    "if": "(branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true",
    "before_script": [
      "skip"
    ]
  }
]

},
"before_script": [
"psql --version",
"psql -c 'CREATE DATABASE travis_test;' -U postgres",
"psql -t -c "SELECT 1 FROM pg_roles WHERE rolname='travis'" -U postgres | grep 1 || psql -c 'CREATE ROLE travis SUPERUSER LOGIN CREATEDB;' -U postgres",
"curl -fs https://raw.githubusercontent.com/travis-ci/travis-migrations/master/db/main/structure.sql | psql -v ON_ERROR_STOP=1 travis_test"
]
}