forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (116 loc) · 3.6 KB
/
Copy pathci.yaml
File metadata and controls
121 lines (116 loc) · 3.6 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: ci
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
test:
name: test (${{ matrix.ruby }}, ${{ matrix.rails }})
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
ruby:
- "4.0"
- "3.4"
- "3.3"
os:
- ubuntu-latest
rails:
- rails_81
- rails_80
- rails_72
exclude:
- ruby: '4.0'
os: ubuntu-latest
rails: rails_72
steps:
- uses: actions/checkout@v7.0.1
- name: Configure bundler (default)
run: |
echo "BUNDLE_GEMFILE=Gemfile" >> "$GITHUB_ENV"
if: matrix.rails == 'rails_81'
- name: Configure bundler (alternative)
run: |
echo "BUNDLE_GEMFILE=gemfiles/${{ matrix.rails }}/Gemfile" >> "$GITHUB_ENV"
if: matrix.rails != 'rails_81'
- uses: ruby/setup-ruby@v1.321.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
rubygems: latest
- name: Create test app
run: bin/rake setup
- name: Restore cached RSpec runtimes
uses: actions/cache@v6.1.0
with:
path: tmp/parallel_runtime_rspec.log
key: runtimes-rspec-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('tmp/parallel_runtime_rspec.log') }}
- name: Run RSpec tests
env:
COVERAGE: true
run: |
bin/parallel_rspec
RSPEC_FILESYSTEM_CHANGES=true bin/rspec
- name: Restore cached cucumber runtimes
uses: actions/cache@v6.1.0
with:
path: tmp/parallel_runtime_cucumber.log
key: runtimes-cucumber-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('tmp/parallel_runtime_cucumber.log') }}
- name: Run Cucumber features
env:
COVERAGE: true
run: |
bin/parallel_cucumber --fail-fast
bin/cucumber --profile filesystem-changes
bin/cucumber --profile class-reloading
- name: Rename coverage file by matrix run
run: mv coverage/coverage.xml coverage/coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}.xml
- uses: actions/upload-artifact@v7
with:
name: coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}
path: coverage
if-no-files-found: error
upload_coverage:
name: Upload Coverage
runs-on: ubuntu-latest
# Do not run on forks
if: ${{ github.repository_owner == 'activeadmin' }}
needs: [test]
steps:
- uses: actions/checkout@v7.0.1
- uses: actions/download-artifact@v8
with:
path: coverage
pattern: coverage-ruby-*
merge-multiple: true
- uses: codecov/codecov-action@v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: coverage
fail_ci_if_error: true
test_docs_build:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.1
- uses: tj-actions/changed-files@v47.0.6
id: changed-files
with:
files: |
docs/**
package*.json
- uses: actions/setup-node@v7.0.0
if: steps.changed-files.outputs.any_changed == 'true'
with:
node-version: 24
cache: npm
- run: npm ci
if: steps.changed-files.outputs.any_changed == 'true'
- run: npm run docs:build
if: steps.changed-files.outputs.any_changed == 'true'