-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (36 loc) · 886 Bytes
/
.travis.yml
File metadata and controls
44 lines (36 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
language: ruby
group: edge
import:
- travis-ci/build-configs:db-setup.yml
rvm: 3.2.2
cache: bundler
env:
global:
- PATH=/snap/bin:$PATH
- COVERAGE=1
addons:
apt:
packages:
- rabbitmq-server
services:
- memcached
- redis
- rabbitmq
before_install:
- 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
ruby:
services:
before_install: echo "skipping"
install: echo "skipping"
before_sript: skip
script: make ship
if: (branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true