AMD64
Ruby: 3.2.2
Git
travis-ci/travis-live:.travis.yml@9e4d7a2
language: ruby
group: edge
cache: bundler
rvm: 3.2.2
before_install:
- gem install rubygems-update -v 3.3.27
- bundle config https://gems.contribsys.com/ $BUNDLE_GEMS__CONTRIBSYS__COM
install:
- bundler -v
- travis_retry bundle install
env:
global:
- PATH=/snap/bin:$PATH
jobs:
include:
- stage: "testing time"
script: bundle exec rspec spec
- stage: ":ship: it to quay.io"
dist: focal
language: ruby
before_install: skip
install: skip
script: make ship
if: (branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true
Build Config
{
"language": "ruby",
"os": [
"linux"
],
"dist": "xenial",
"group": "edge",
"cache": {
"bundler": true
},
"rvm": [
"3.2.2"
],
"before_install": [
"gem install rubygems-update -v 3.3.27",
"bundle config https://gems.contribsys.com/ $BUNDLE_GEMS__CONTRIBSYS__COM"
],
"install": [
"bundler -v",
"travis_retry bundle install"
],
"env": {
"global": [
{
"PATH": "/snap/bin:$PATH"
}
]
},
"jobs": {
"include": [
{
"stage": "testing time",
"script": [
"bundle exec rspec spec"
]
},
{
"stage": ":ship: it to quay.io",
"dist": "focal",
"language": "ruby",
"before_install": [
"skip"
],
"install": [
"skip"
],
"script": [
"make ship"
],
"if": "(branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true"
}
]
}
}