-
Notifications
You must be signed in to change notification settings - Fork 1
105 lines (103 loc) · 2.8 KB
/
continuous_integration.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: Continuous Integration
on:
push:
branches:
- main
- actions-*
tags:
- v*
pull_request:
workflow_dispatch:
env:
BUNDLE_CLEAN: "true"
BUNDLE_PATH: vendor/bundle
BUNDLE_JOBS: 3
BUNDLE_RETRY: 3
TEST_REDIS_URL: default
TEST_S3_URL: default
TEST_MONGODB_URL: default
jobs:
specs:
name: ruby-${{ matrix.ruby }} ${{ matrix.appraisal }}
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
minio:
image: minio/minio:edge-cicd
ports:
- 9000:9000
env:
MINIO_ROOT_USER: accesskey
MINIO_ROOT_PASSWORD: secretkey
options: >-
--health-cmd "curl -f http://localhost:9000/minio/health/live"
--health-interval 10s
--health-timeout 5s
--health-retries 5
mongodb:
image: mongo
ports:
- 27017:27017
options: >-
--health-cmd "echo 'db.runCommand("ping").ok' | mongosh --quiet"
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
fail-fast: false
matrix:
include:
- ruby: "ruby"
standardrb: true
- ruby: "ruby"
appraisal: "no_extensions"
- ruby: "3.3"
appraisal: "rails_8.0"
- ruby: "3.2"
appraisal: "rails_7.2"
- ruby: "3.1"
appraisal: "rails_7.0"
- ruby: "3.0"
appraisal: "rails_6.1"
- ruby: "2.7"
appraisal: "rails_6.0"
- ruby: "2.6"
appraisal: "rails_5.2"
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup bundler
if: matrix.bundler != ''
run: |
gem uninstall bundler --all
gem install bundler --no-document --version ${{ matrix.bundler }}
- name: Set Appraisal bundle
if: matrix.appraisal != '' && matrix.gemfile == ''
run: |
echo "using gemfile gemfiles/${{ matrix.appraisal }}.gemfile"
bundle config set gemfile "gemfiles/${{ matrix.appraisal }}.gemfile"
cat gemfiles/${{ matrix.appraisal }}.gemfile
- name: Install bundle
run: |
bundle update
- name: Run specs
env:
FERRUM_PROCESS_TIMEOUT: "30"
run: bundle exec rake spec
- name: Run standardrb
if: matrix.standardrb == true
run: bundle exec rake standard