-
Notifications
You must be signed in to change notification settings - Fork 0
246 lines (216 loc) · 7.48 KB
/
backend-ci.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
name: Rails API
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: write
checks: write
env:
RAILS_ENV: test
POSTGRES_HOST: ${{ secrets.DB_HOST }}
POSTGRES_PORT: ${{ secrets.DB_PORT }}
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ secrets.POSTGRES_DB }}
POSTGRES_DATABASE: ${{ secrets.POSTGRES_DB }}
AUTH_SECRET: ${{ secrets.DEVISE_JWT_SECRET_KEY }}
BUNDLE_GEMFILE: ${{ github.workspace }}/Gemfile
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}
CLERK_WEBHOOK_SECRET: ${{ secrets.CLERK_WEBHOOK_SECRET }}
RUBY_VERSION: 3.3.5
REDIS_URL: ${{ secrets.REDIS_URL }}
ACTION_CABLE_URL: ${{ secrets.ACTION_CABLE_URL }}
ACTION_CABLE_ALLOWED_ORIGINS: ${{ secrets.ACTION_CABLE_ALLOWED_ORIGINS }}
RAILS_HOSTS: ${{ secrets.RAILS_HOSTS }}
RAILS_API_DEFAULT_HOST: ${{ secrets.RAILS_API_DEFAULT_HOST }}
CORS_ALLOWED_ORIGINS: ${{ secrets.CORS_ALLOWED_ORIGINS }}
jobs:
parallel-tests:
runs-on: ubuntu-latest
strategy:
matrix:
group: [1, 2, 3, 4]
max-parallel: 4
name: RSpec parallel group ${{ matrix.group }}/4
services:
postgres:
image: postgres:16.3
env:
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
POSTGRES_PASSWORD: "${{ secrets.POSTGRES_PASSWORD }}"
POSTGRES_DB: ${{ secrets.POSTGRES_DB }}
ports:
- 5432:5432
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- name: Install dependencies
run: bundle check || bundle install
- name: "Runtime cache: restore"
uses: actions/cache/restore@v4
id: cache-restore
with:
key: runtime-cache-all
path: tmp/parallel_runtime_rspec.log
- name: Setup database
run: |
bundle exec rake parallel:create
bundle exec rake parallel:migrate
bundle exec rake parallel:prepare
- name: Run Rspec Tests
run: |
# if [ -f "tmp/parallel_runtime_rspec.log" ] && [ $(wc -l < tmp/parallel_runtime_rspec.log) -gt 50 ]; then
# bundle exec parallel_rspec -n 4 --group-by runtime --only-group ${{ matrix.group }} --verbose
# else
# echo "Runtime log file is missing or too small, falling back to filesize grouping."
bundle exec parallel_rspec -n 4 --group-by filesize --only-group ${{ matrix.group }} --verbose
# fi
env:
AUTH_SECRET: ${{ secrets.AUTH_SECRET}}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
RECORD_RUNTIME: "true"
- name: "Runtime cache: rename chunk"
if: always()
shell: bash
env:
GH_TOKEN: ${{ github.token }}
run: |
if [ -f "tmp/parallel_runtime_rspec.log" ]; then
echo "Renaming runtime log"
mkdir -p tmp/parallel_runtime_rspec
mv tmp/parallel_runtime_rspec.log tmp/parallel_runtime_rspec/${{ matrix.group }}.log
fi
- name: "Runtime cache: store chunk"
if: always()
uses: actions/cache/save@v4
with:
key: runtime-cache-${{ matrix.group }}
path: tmp/parallel_runtime_rspec/${{ matrix.group }}.log
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always()
with:
report_paths: './test-results/rspec/results.xml'
include_passed: true
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
if: ${{ !cancelled() }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: 'coverage/.resultset.json,coverage/index.html,coverage/lcov.info'
flags: rspec
name: codecov-umbrella
verbose: true
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
directory: test-results
files: '**/*.xml'
flags: rspec
token: ${{ secrets.CODECOV_TOKEN }}
- name: List coverage directory
run: ls -la coverage
store-runtime:
runs-on: ubuntu-latest
needs: parallel-tests
steps:
- name: "Runtime cache: load chunk 1"
uses: actions/cache/restore@v4
with:
key: runtime-cache-1
path: tmp/parallel_runtime_rspec/1.log
- name: "Runtime cache: load chunk 2"
uses: actions/cache/restore@v4
with:
key: runtime-cache-2
path: tmp/parallel_runtime_rspec/2.log
- name: "Runtime cache: load chunk 3"
uses: actions/cache/restore@v4
with:
key: runtime-cache-3
path: tmp/parallel_runtime_rspec/3.log
- name: "Runtime cache: load chunk 4"
uses: actions/cache/restore@v4
with:
key: runtime-cache-4
path: tmp/parallel_runtime_rspec/4.log
- name: "Runtime cache: combine chunks"
run: |
mkdir -p tmp
for i in 1 2 3 4; do
if [ ! -f "tmp/parallel_runtime_rspec/${i}.log" ]; then
echo "Error: Missing runtime log for chunk ${i}"
exit 1
fi
done
cat tmp/parallel_runtime_rspec/* > tmp/parallel_runtime_rspec.log
cat tmp/parallel_runtime_rspec.log
- name: "Runtime cache: clear"
env:
GH_TOKEN: ${{ github.token }}
run: |
mkdir -p tmp/parallel_runtime_rspec
gh actions-cache delete runtime-cache-all --confirm
continue-on-error: true
- name: "Runtime cache: store"
uses: actions/cache/save@v4
with:
key: runtime-cache-all
path: tmp/parallel_runtime_rspec.log
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- name: Install dependencies
run: bundle check || bundle install
- name: Run Ruby Audit
run: bundle exec ruby-audit check
rubocop:
runs-on: ubuntu-latest
env:
BUNDLE_ONLY: rubocop
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- name: Install dependencies
run: bundle check || bundle install
- name: Run RuboCop with Reviewdog
if: github.event_name == 'pull_request'
uses: reviewdog/action-rubocop@v2
with:
rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile rubocop-rspec:gemfile rubocop-github:gemfile
only_changed: true
github_token: ${{ github.token }}
reporter: github-pr-review # Default is github-pr-check
skip_install: true
use_bundler: true
rubocop_flags: --force-exclusion