-
Notifications
You must be signed in to change notification settings - Fork 53
296 lines (270 loc) · 8.8 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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
push:
branches:
- master
- cypress_v5
- cypress_v6
- cypress_v7
pull_request:
branches:
- master
- cypress_v5
- cypress_v6
- cypress_v7
jobs:
audit:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
bundle install
- name: Bundle audit check
run: |
bundle exec bundle-audit check --update
overcommit:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 20.14
nvm use stable
bundle install
- name: Run overcommit
run: |
git config --global user.email "[email protected]"
git config --global user.name "Travis CI"
sudo npm install -g [email protected]
bundle exec overcommit --sign
bundle exec overcommit --run
cucumber-1:
strategy:
fail-fast: false
runs-on: ubuntu-20.04
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 20.14
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run cucumber
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
max_attempts: 2
retry_on: error
command: bundle exec cucumber features/admin/ features/checklist_tests/ features/filtering_tests/ features/measure_tests/ features/multi_measure_tests/;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-cucumber-1
cucumber-2:
strategy:
fail-fast: false
runs-on: ubuntu-20.04
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 20.14
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run cucumber
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
max_attempts: 2
retry_on: error
command: bundle exec cucumber features/products/ features/program_tests/ features/records/ features/users/ features/vendors/;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-cucumber-2
unit-test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 20.14
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run Rake test
run: |
RUBYOPT="-W0"
bundle exec rake test:units;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-unit
controllers-jobs-helpers-test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 20.14
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run Rake test:jobs
run: |
RUBYOPT="-W0"
bundle exec rake test:jobs;
- name: Upload code jobs coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-job
- name: Run Rake test:helpers
run: |
RUBYOPT="-W0"
bundle exec rake test:helpers;
- name: Upload code helpers coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-helper
- name: Run Rake test:controllers
run: |
RUBYOPT="-W0"
bundle exec rake test:controllers;
- name: Upload controllers code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-controller
integration-test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 20.14
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run Rake test
run: |
RUBYOPT="-W0"
bundle exec rake test:integration;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-integration