-
Notifications
You must be signed in to change notification settings - Fork 65
67 lines (64 loc) · 2.07 KB
/
ruby.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
name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: test (ruby ${{ matrix.ruby }} / rails ${{ matrix.rails_version }} / blacklight ${{ matrix.blacklight_version }} ${{ matrix.additional_name }})
strategy:
matrix:
rails_version: ['7.0.4.1']
ruby: ['3.1', '3.2']
bootstrap_version: ['~> 4.0']
blacklight_version: ['latest']
additional_engine_cart_rails_options: ['']
additional_name: ['']
include:
- rails_version: '6.1.7.1'
ruby: '3.0'
blacklight_version: '7.33.1'
bootstrap_version: ~> 4.0
- rails_version: '6.1.7.1'
ruby: '2.7'
blacklight_version: '7.33.1'
bootstrap_version: ~> 4.0
- rails_version: '7.0.4.1'
ruby: '3.1'
blacklight_version: '8.0.0'
bootstrap_version: ~> 4.0
- rails_version: '7.0.4.1'
ruby: '3.2'
blacklight_version: '8.0.0'
bootstrap_version: ~> 4.0
additional_engine_cart_rails_options: -a propshaft
additional_name: '/ Propshaft'
env:
RAILS_VERSION: ${{ matrix.rails_version }}
BLACKLIGHT_VERSION: ${{ matrix.blacklight_version }}
BOOTSTRAP_VERSION: ${{ matrix.bootstrap_version }}
ENGINE_CART_RAILS_OPTIONS: --skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test --skip-javascript
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
bundler: '2.4.22'
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: bundle exec rake
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Buildx
uses: docker/setup-buildx-action@v2
- name: Build Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: false