appsignal 2.10.6 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -0
- data/.semaphore/semaphore.yml +138 -62
- data/CHANGELOG.md +56 -0
- data/README.md +4 -4
- data/Rakefile +16 -4
- data/appsignal.gemspec +1 -1
- data/build_matrix.yml +20 -9
- data/ext/Rakefile +2 -0
- data/ext/agent.yml +19 -19
- data/ext/appsignal_extension.c +10 -1
- data/ext/base.rb +22 -4
- data/ext/extconf.rb +2 -0
- data/gemfiles/padrino.gemfile +2 -2
- data/gemfiles/rails-4.2.gemfile +9 -2
- data/gemfiles/rails-5.0.gemfile +1 -0
- data/gemfiles/rails-5.1.gemfile +1 -0
- data/gemfiles/rails-5.2.gemfile +1 -0
- data/gemfiles/rails-6.0.gemfile +1 -0
- data/gemfiles/resque-1.gemfile +7 -0
- data/gemfiles/{resque.gemfile → resque-2.gemfile} +1 -1
- data/lib/appsignal.rb +22 -1
- data/lib/appsignal/auth_check.rb +4 -2
- data/lib/appsignal/capistrano.rb +2 -0
- data/lib/appsignal/cli/diagnose.rb +1 -1
- data/lib/appsignal/config.rb +85 -16
- data/lib/appsignal/environment.rb +126 -0
- data/lib/appsignal/extension.rb +6 -5
- data/lib/appsignal/extension/jruby.rb +16 -5
- data/lib/appsignal/hooks.rb +25 -0
- data/lib/appsignal/hooks/active_job.rb +137 -0
- data/lib/appsignal/hooks/net_http.rb +10 -13
- data/lib/appsignal/hooks/puma.rb +1 -58
- data/lib/appsignal/hooks/redis.rb +2 -0
- data/lib/appsignal/hooks/resque.rb +60 -0
- data/lib/appsignal/hooks/sequel.rb +2 -0
- data/lib/appsignal/hooks/sidekiq.rb +18 -192
- data/lib/appsignal/integrations/delayed_job_plugin.rb +16 -3
- data/lib/appsignal/integrations/object.rb +4 -0
- data/lib/appsignal/integrations/que.rb +1 -1
- data/lib/appsignal/integrations/resque.rb +9 -12
- data/lib/appsignal/integrations/resque_active_job.rb +9 -24
- data/lib/appsignal/probes.rb +7 -0
- data/lib/appsignal/probes/puma.rb +61 -0
- data/lib/appsignal/probes/sidekiq.rb +104 -0
- data/lib/appsignal/rack/js_exception_catcher.rb +5 -2
- data/lib/appsignal/system.rb +0 -6
- data/lib/appsignal/transaction.rb +32 -7
- data/lib/appsignal/utils/deprecation_message.rb +6 -2
- data/lib/appsignal/version.rb +1 -1
- data/lib/puma/plugin/appsignal.rb +2 -1
- data/spec/lib/appsignal/auth_check_spec.rb +23 -0
- data/spec/lib/appsignal/capistrano2_spec.rb +1 -1
- data/spec/lib/appsignal/capistrano3_spec.rb +1 -1
- data/spec/lib/appsignal/cli/diagnose_spec.rb +44 -1
- data/spec/lib/appsignal/config_spec.rb +44 -1
- data/spec/lib/appsignal/environment_spec.rb +167 -0
- data/spec/lib/appsignal/extension/jruby_spec.rb +31 -28
- data/spec/lib/appsignal/extension_install_failure_spec.rb +23 -0
- data/spec/lib/appsignal/hooks/activejob_spec.rb +591 -0
- data/spec/lib/appsignal/hooks/delayed_job_spec.rb +187 -166
- data/spec/lib/appsignal/hooks/puma_spec.rb +2 -181
- data/spec/lib/appsignal/hooks/resque_spec.rb +185 -0
- data/spec/lib/appsignal/hooks/sidekiq_spec.rb +297 -549
- data/spec/lib/appsignal/hooks_spec.rb +57 -0
- data/spec/lib/appsignal/integrations/padrino_spec.rb +1 -1
- data/spec/lib/appsignal/integrations/que_spec.rb +25 -6
- data/spec/lib/appsignal/integrations/resque_active_job_spec.rb +20 -137
- data/spec/lib/appsignal/integrations/resque_spec.rb +20 -85
- data/spec/lib/appsignal/marker_spec.rb +1 -1
- data/spec/lib/appsignal/probes/puma_spec.rb +180 -0
- data/spec/lib/appsignal/probes/sidekiq_spec.rb +204 -0
- data/spec/lib/appsignal/rack/js_exception_catcher_spec.rb +9 -4
- data/spec/lib/appsignal/system_spec.rb +0 -36
- data/spec/lib/appsignal/transaction_spec.rb +35 -20
- data/spec/lib/appsignal_spec.rb +22 -0
- data/spec/lib/puma/appsignal_spec.rb +1 -1
- data/spec/spec_helper.rb +5 -0
- data/spec/support/helpers/action_mailer_helpers.rb +25 -0
- data/spec/support/helpers/config_helpers.rb +3 -2
- data/spec/support/helpers/dependency_helper.rb +12 -0
- data/spec/support/helpers/env_helpers.rb +1 -1
- data/spec/support/helpers/environment_metdata_helper.rb +16 -0
- data/spec/support/helpers/transaction_helpers.rb +6 -0
- data/spec/support/stubs/sidekiq/api.rb +2 -2
- data/spec/support/testing.rb +19 -19
- metadata +31 -9
- data/lib/appsignal/integrations/net_http.rb +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 729af361ecc593072a0ff944ebc54f5fc3f11153e645240eab9510bb9bc6d864
|
|
4
|
+
data.tar.gz: a4f1867b5cb1fdc6cee90b846bc3dd6ff2b8c7bea4d0665188517b857eaddac2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e522ef35f000186b9182d3f97d921e97649abb15bb70ee040b05d60f2e7bc6e5329ac55520476f23613a304e708b924043aeea049c1ae12370de769e592de603
|
|
7
|
+
data.tar.gz: 00aa8330ec753a31c30b511a6f9aab3f63d8b14dd9f07d87bb154cb10de1617bd80318d1582f3113d4438511c82a6f8a9f9274e719e98536e6aae4aa204abbe8
|
data/.rubocop.yml
CHANGED
data/.semaphore/semaphore.yml
CHANGED
|
@@ -11,7 +11,7 @@ agent:
|
|
|
11
11
|
os_image: ubuntu1804
|
|
12
12
|
auto_cancel:
|
|
13
13
|
running:
|
|
14
|
-
when: branch != '
|
|
14
|
+
when: branch != 'main' AND branch != 'develop'
|
|
15
15
|
global_job_config:
|
|
16
16
|
env_vars:
|
|
17
17
|
- name: _BUNDLER_CACHE
|
|
@@ -33,9 +33,10 @@ global_job_config:
|
|
|
33
33
|
- checkout
|
|
34
34
|
- sem-version ruby $RUBY_VERSION
|
|
35
35
|
- "./support/check_versions"
|
|
36
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
37
|
-
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
|
|
36
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
37
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
|
|
38
38
|
- "./support/install_deps"
|
|
39
|
+
- bundle config set clean 'true'
|
|
39
40
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
40
41
|
epilogue:
|
|
41
42
|
on_pass:
|
|
@@ -43,6 +44,11 @@ global_job_config:
|
|
|
43
44
|
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
44
45
|
.bundle
|
|
45
46
|
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE) $HOME/.gem
|
|
47
|
+
on_fail:
|
|
48
|
+
commands:
|
|
49
|
+
- "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report
|
|
50
|
+
file found'"
|
|
51
|
+
- "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
|
|
46
52
|
blocks:
|
|
47
53
|
- name: Validation
|
|
48
54
|
dependencies: []
|
|
@@ -94,6 +100,7 @@ blocks:
|
|
|
94
100
|
value: 1.17.3
|
|
95
101
|
commands:
|
|
96
102
|
- "./support/bundler_wrapper exec rake test"
|
|
103
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
97
104
|
- name: Ruby 2.0.0-p648
|
|
98
105
|
dependencies:
|
|
99
106
|
- Validation
|
|
@@ -116,6 +123,7 @@ blocks:
|
|
|
116
123
|
value: 1.17.3
|
|
117
124
|
commands:
|
|
118
125
|
- "./support/bundler_wrapper exec rake test"
|
|
126
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
119
127
|
- name: Ruby 2.0.0-p648 - Gems
|
|
120
128
|
dependencies:
|
|
121
129
|
- Ruby 2.0.0-p648
|
|
@@ -138,6 +146,7 @@ blocks:
|
|
|
138
146
|
value: 1.17.3
|
|
139
147
|
commands:
|
|
140
148
|
- "./support/bundler_wrapper exec rake test"
|
|
149
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
141
150
|
- name: Ruby 2.0.0-p648 for capistrano3
|
|
142
151
|
env_vars:
|
|
143
152
|
- name: RUBY_VERSION
|
|
@@ -152,6 +161,7 @@ blocks:
|
|
|
152
161
|
value: 1.17.3
|
|
153
162
|
commands:
|
|
154
163
|
- "./support/bundler_wrapper exec rake test"
|
|
164
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
155
165
|
- name: Ruby 2.0.0-p648 for grape
|
|
156
166
|
env_vars:
|
|
157
167
|
- name: RUBY_VERSION
|
|
@@ -166,20 +176,7 @@ blocks:
|
|
|
166
176
|
value: 1.17.3
|
|
167
177
|
commands:
|
|
168
178
|
- "./support/bundler_wrapper exec rake test"
|
|
169
|
-
|
|
170
|
-
env_vars:
|
|
171
|
-
- name: RUBY_VERSION
|
|
172
|
-
value: 2.0.0-p648
|
|
173
|
-
- name: GEMSET
|
|
174
|
-
value: padrino
|
|
175
|
-
- name: BUNDLE_GEMFILE
|
|
176
|
-
value: gemfiles/padrino.gemfile
|
|
177
|
-
- name: _RUBYGEMS_VERSION
|
|
178
|
-
value: 2.7.8
|
|
179
|
-
- name: _BUNDLER_VERSION
|
|
180
|
-
value: 1.17.3
|
|
181
|
-
commands:
|
|
182
|
-
- "./support/bundler_wrapper exec rake test"
|
|
179
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
183
180
|
- name: Ruby 2.0.0-p648 for que
|
|
184
181
|
env_vars:
|
|
185
182
|
- name: RUBY_VERSION
|
|
@@ -194,6 +191,7 @@ blocks:
|
|
|
194
191
|
value: 1.17.3
|
|
195
192
|
commands:
|
|
196
193
|
- "./support/bundler_wrapper exec rake test"
|
|
194
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
197
195
|
- name: Ruby 2.0.0-p648 for rails-3.2
|
|
198
196
|
env_vars:
|
|
199
197
|
- name: RUBY_VERSION
|
|
@@ -208,6 +206,7 @@ blocks:
|
|
|
208
206
|
value: 1.17.3
|
|
209
207
|
commands:
|
|
210
208
|
- "./support/bundler_wrapper exec rake test"
|
|
209
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
211
210
|
- name: Ruby 2.0.0-p648 for rails-4.2
|
|
212
211
|
env_vars:
|
|
213
212
|
- name: RUBY_VERSION
|
|
@@ -222,20 +221,22 @@ blocks:
|
|
|
222
221
|
value: 1.17.3
|
|
223
222
|
commands:
|
|
224
223
|
- "./support/bundler_wrapper exec rake test"
|
|
225
|
-
|
|
224
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
225
|
+
- name: Ruby 2.0.0-p648 for resque-1
|
|
226
226
|
env_vars:
|
|
227
227
|
- name: RUBY_VERSION
|
|
228
228
|
value: 2.0.0-p648
|
|
229
229
|
- name: GEMSET
|
|
230
|
-
value: resque
|
|
230
|
+
value: resque-1
|
|
231
231
|
- name: BUNDLE_GEMFILE
|
|
232
|
-
value: gemfiles/resque.gemfile
|
|
232
|
+
value: gemfiles/resque-1.gemfile
|
|
233
233
|
- name: _RUBYGEMS_VERSION
|
|
234
234
|
value: 2.7.8
|
|
235
235
|
- name: _BUNDLER_VERSION
|
|
236
236
|
value: 1.17.3
|
|
237
237
|
commands:
|
|
238
238
|
- "./support/bundler_wrapper exec rake test"
|
|
239
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
239
240
|
- name: Ruby 2.0.0-p648 for sequel
|
|
240
241
|
env_vars:
|
|
241
242
|
- name: RUBY_VERSION
|
|
@@ -250,6 +251,7 @@ blocks:
|
|
|
250
251
|
value: 1.17.3
|
|
251
252
|
commands:
|
|
252
253
|
- "./support/bundler_wrapper exec rake test"
|
|
254
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
253
255
|
- name: Ruby 2.0.0-p648 for sequel-435
|
|
254
256
|
env_vars:
|
|
255
257
|
- name: RUBY_VERSION
|
|
@@ -264,6 +266,7 @@ blocks:
|
|
|
264
266
|
value: 1.17.3
|
|
265
267
|
commands:
|
|
266
268
|
- "./support/bundler_wrapper exec rake test"
|
|
269
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
267
270
|
- name: Ruby 2.0.0-p648 for sinatra
|
|
268
271
|
env_vars:
|
|
269
272
|
- name: RUBY_VERSION
|
|
@@ -278,6 +281,7 @@ blocks:
|
|
|
278
281
|
value: 1.17.3
|
|
279
282
|
commands:
|
|
280
283
|
- "./support/bundler_wrapper exec rake test"
|
|
284
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
281
285
|
- name: Ruby 2.0.0-p648 for webmachine
|
|
282
286
|
env_vars:
|
|
283
287
|
- name: RUBY_VERSION
|
|
@@ -292,6 +296,7 @@ blocks:
|
|
|
292
296
|
value: 1.17.3
|
|
293
297
|
commands:
|
|
294
298
|
- "./support/bundler_wrapper exec rake test"
|
|
299
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
295
300
|
- name: Ruby 2.1.10
|
|
296
301
|
dependencies:
|
|
297
302
|
- Validation
|
|
@@ -314,6 +319,7 @@ blocks:
|
|
|
314
319
|
value: 1.17.3
|
|
315
320
|
commands:
|
|
316
321
|
- "./support/bundler_wrapper exec rake test"
|
|
322
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
317
323
|
- name: Ruby 2.2.10
|
|
318
324
|
dependencies:
|
|
319
325
|
- Validation
|
|
@@ -336,6 +342,7 @@ blocks:
|
|
|
336
342
|
value: 1.17.3
|
|
337
343
|
commands:
|
|
338
344
|
- "./support/bundler_wrapper exec rake test"
|
|
345
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
339
346
|
- name: Ruby 2.3.8
|
|
340
347
|
dependencies:
|
|
341
348
|
- Validation
|
|
@@ -358,6 +365,7 @@ blocks:
|
|
|
358
365
|
value: latest
|
|
359
366
|
commands:
|
|
360
367
|
- "./support/bundler_wrapper exec rake test"
|
|
368
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
361
369
|
- name: Ruby 2.4.9
|
|
362
370
|
dependencies:
|
|
363
371
|
- Validation
|
|
@@ -380,6 +388,7 @@ blocks:
|
|
|
380
388
|
value: latest
|
|
381
389
|
commands:
|
|
382
390
|
- "./support/bundler_wrapper exec rake test"
|
|
391
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
383
392
|
- name: Ruby 2.5.7
|
|
384
393
|
dependencies:
|
|
385
394
|
- Validation
|
|
@@ -402,6 +411,7 @@ blocks:
|
|
|
402
411
|
value: latest
|
|
403
412
|
commands:
|
|
404
413
|
- "./support/bundler_wrapper exec rake test"
|
|
414
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
405
415
|
- name: Ruby 2.5.7 - Gems
|
|
406
416
|
dependencies:
|
|
407
417
|
- Ruby 2.5.7
|
|
@@ -424,6 +434,7 @@ blocks:
|
|
|
424
434
|
value: latest
|
|
425
435
|
commands:
|
|
426
436
|
- "./support/bundler_wrapper exec rake test"
|
|
437
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
427
438
|
- name: Ruby 2.5.7 for rails-6.0
|
|
428
439
|
env_vars:
|
|
429
440
|
- name: RUBY_VERSION
|
|
@@ -438,6 +449,7 @@ blocks:
|
|
|
438
449
|
value: latest
|
|
439
450
|
commands:
|
|
440
451
|
- "./support/bundler_wrapper exec rake test"
|
|
452
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
441
453
|
- name: Ruby 2.6.5
|
|
442
454
|
dependencies:
|
|
443
455
|
- Validation
|
|
@@ -460,6 +472,7 @@ blocks:
|
|
|
460
472
|
value: latest
|
|
461
473
|
commands:
|
|
462
474
|
- "./support/bundler_wrapper exec rake test"
|
|
475
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
463
476
|
- name: Ruby 2.6.5 - Gems
|
|
464
477
|
dependencies:
|
|
465
478
|
- Ruby 2.6.5
|
|
@@ -482,6 +495,7 @@ blocks:
|
|
|
482
495
|
value: latest
|
|
483
496
|
commands:
|
|
484
497
|
- "./support/bundler_wrapper exec rake test"
|
|
498
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
485
499
|
- name: Ruby 2.6.5 for capistrano3
|
|
486
500
|
env_vars:
|
|
487
501
|
- name: RUBY_VERSION
|
|
@@ -496,6 +510,7 @@ blocks:
|
|
|
496
510
|
value: latest
|
|
497
511
|
commands:
|
|
498
512
|
- "./support/bundler_wrapper exec rake test"
|
|
513
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
499
514
|
- name: Ruby 2.6.5 for grape
|
|
500
515
|
env_vars:
|
|
501
516
|
- name: RUBY_VERSION
|
|
@@ -510,6 +525,7 @@ blocks:
|
|
|
510
525
|
value: latest
|
|
511
526
|
commands:
|
|
512
527
|
- "./support/bundler_wrapper exec rake test"
|
|
528
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
513
529
|
- name: Ruby 2.6.5 for padrino
|
|
514
530
|
env_vars:
|
|
515
531
|
- name: RUBY_VERSION
|
|
@@ -521,9 +537,10 @@ blocks:
|
|
|
521
537
|
- name: _RUBYGEMS_VERSION
|
|
522
538
|
value: latest
|
|
523
539
|
- name: _BUNDLER_VERSION
|
|
524
|
-
value:
|
|
540
|
+
value: latest
|
|
525
541
|
commands:
|
|
526
542
|
- "./support/bundler_wrapper exec rake test"
|
|
543
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
527
544
|
- name: Ruby 2.6.5 for que
|
|
528
545
|
env_vars:
|
|
529
546
|
- name: RUBY_VERSION
|
|
@@ -538,6 +555,7 @@ blocks:
|
|
|
538
555
|
value: latest
|
|
539
556
|
commands:
|
|
540
557
|
- "./support/bundler_wrapper exec rake test"
|
|
558
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
541
559
|
- name: Ruby 2.6.5 for que_beta
|
|
542
560
|
env_vars:
|
|
543
561
|
- name: RUBY_VERSION
|
|
@@ -552,6 +570,7 @@ blocks:
|
|
|
552
570
|
value: latest
|
|
553
571
|
commands:
|
|
554
572
|
- "./support/bundler_wrapper exec rake test"
|
|
573
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
555
574
|
- name: Ruby 2.6.5 for rails-5.0
|
|
556
575
|
env_vars:
|
|
557
576
|
- name: RUBY_VERSION
|
|
@@ -566,6 +585,7 @@ blocks:
|
|
|
566
585
|
value: latest
|
|
567
586
|
commands:
|
|
568
587
|
- "./support/bundler_wrapper exec rake test"
|
|
588
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
569
589
|
- name: Ruby 2.6.5 for rails-5.1
|
|
570
590
|
env_vars:
|
|
571
591
|
- name: RUBY_VERSION
|
|
@@ -580,6 +600,7 @@ blocks:
|
|
|
580
600
|
value: latest
|
|
581
601
|
commands:
|
|
582
602
|
- "./support/bundler_wrapper exec rake test"
|
|
603
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
583
604
|
- name: Ruby 2.6.5 for rails-5.2
|
|
584
605
|
env_vars:
|
|
585
606
|
- name: RUBY_VERSION
|
|
@@ -594,6 +615,7 @@ blocks:
|
|
|
594
615
|
value: latest
|
|
595
616
|
commands:
|
|
596
617
|
- "./support/bundler_wrapper exec rake test"
|
|
618
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
597
619
|
- name: Ruby 2.6.5 for rails-6.0
|
|
598
620
|
env_vars:
|
|
599
621
|
- name: RUBY_VERSION
|
|
@@ -608,20 +630,37 @@ blocks:
|
|
|
608
630
|
value: latest
|
|
609
631
|
commands:
|
|
610
632
|
- "./support/bundler_wrapper exec rake test"
|
|
611
|
-
|
|
633
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
634
|
+
- name: Ruby 2.6.5 for resque-1
|
|
612
635
|
env_vars:
|
|
613
636
|
- name: RUBY_VERSION
|
|
614
637
|
value: 2.6.5
|
|
615
638
|
- name: GEMSET
|
|
616
|
-
value: resque
|
|
639
|
+
value: resque-1
|
|
617
640
|
- name: BUNDLE_GEMFILE
|
|
618
|
-
value: gemfiles/resque.gemfile
|
|
641
|
+
value: gemfiles/resque-1.gemfile
|
|
619
642
|
- name: _RUBYGEMS_VERSION
|
|
620
643
|
value: latest
|
|
621
644
|
- name: _BUNDLER_VERSION
|
|
622
645
|
value: 1.17.3
|
|
623
646
|
commands:
|
|
624
647
|
- "./support/bundler_wrapper exec rake test"
|
|
648
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
649
|
+
- name: Ruby 2.6.5 for resque-2
|
|
650
|
+
env_vars:
|
|
651
|
+
- name: RUBY_VERSION
|
|
652
|
+
value: 2.6.5
|
|
653
|
+
- name: GEMSET
|
|
654
|
+
value: resque-2
|
|
655
|
+
- name: BUNDLE_GEMFILE
|
|
656
|
+
value: gemfiles/resque-2.gemfile
|
|
657
|
+
- name: _RUBYGEMS_VERSION
|
|
658
|
+
value: latest
|
|
659
|
+
- name: _BUNDLER_VERSION
|
|
660
|
+
value: latest
|
|
661
|
+
commands:
|
|
662
|
+
- "./support/bundler_wrapper exec rake test"
|
|
663
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
625
664
|
- name: Ruby 2.6.5 for sequel
|
|
626
665
|
env_vars:
|
|
627
666
|
- name: RUBY_VERSION
|
|
@@ -636,6 +675,7 @@ blocks:
|
|
|
636
675
|
value: latest
|
|
637
676
|
commands:
|
|
638
677
|
- "./support/bundler_wrapper exec rake test"
|
|
678
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
639
679
|
- name: Ruby 2.6.5 for sequel-435
|
|
640
680
|
env_vars:
|
|
641
681
|
- name: RUBY_VERSION
|
|
@@ -650,6 +690,7 @@ blocks:
|
|
|
650
690
|
value: latest
|
|
651
691
|
commands:
|
|
652
692
|
- "./support/bundler_wrapper exec rake test"
|
|
693
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
653
694
|
- name: Ruby 2.6.5 for sinatra
|
|
654
695
|
env_vars:
|
|
655
696
|
- name: RUBY_VERSION
|
|
@@ -664,6 +705,7 @@ blocks:
|
|
|
664
705
|
value: latest
|
|
665
706
|
commands:
|
|
666
707
|
- "./support/bundler_wrapper exec rake test"
|
|
708
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
667
709
|
- name: Ruby 2.6.5 for webmachine
|
|
668
710
|
env_vars:
|
|
669
711
|
- name: RUBY_VERSION
|
|
@@ -678,7 +720,8 @@ blocks:
|
|
|
678
720
|
value: latest
|
|
679
721
|
commands:
|
|
680
722
|
- "./support/bundler_wrapper exec rake test"
|
|
681
|
-
-
|
|
723
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
724
|
+
- name: Ruby 2.7.1
|
|
682
725
|
dependencies:
|
|
683
726
|
- Validation
|
|
684
727
|
task:
|
|
@@ -686,10 +729,10 @@ blocks:
|
|
|
686
729
|
commands:
|
|
687
730
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
688
731
|
jobs:
|
|
689
|
-
- name: Ruby 2.7.
|
|
732
|
+
- name: Ruby 2.7.1 for no_dependencies
|
|
690
733
|
env_vars:
|
|
691
734
|
- name: RUBY_VERSION
|
|
692
|
-
value: 2.7.
|
|
735
|
+
value: 2.7.1
|
|
693
736
|
- name: GEMSET
|
|
694
737
|
value: no_dependencies
|
|
695
738
|
- name: BUNDLE_GEMFILE
|
|
@@ -700,18 +743,19 @@ blocks:
|
|
|
700
743
|
value: latest
|
|
701
744
|
commands:
|
|
702
745
|
- "./support/bundler_wrapper exec rake test"
|
|
703
|
-
-
|
|
746
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
747
|
+
- name: Ruby 2.7.1 - Gems
|
|
704
748
|
dependencies:
|
|
705
|
-
- Ruby 2.7.
|
|
749
|
+
- Ruby 2.7.1
|
|
706
750
|
task:
|
|
707
751
|
prologue:
|
|
708
752
|
commands:
|
|
709
753
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
710
754
|
jobs:
|
|
711
|
-
- name: Ruby 2.7.
|
|
755
|
+
- name: Ruby 2.7.1 for capistrano2
|
|
712
756
|
env_vars:
|
|
713
757
|
- name: RUBY_VERSION
|
|
714
|
-
value: 2.7.
|
|
758
|
+
value: 2.7.1
|
|
715
759
|
- name: GEMSET
|
|
716
760
|
value: capistrano2
|
|
717
761
|
- name: BUNDLE_GEMFILE
|
|
@@ -722,10 +766,11 @@ blocks:
|
|
|
722
766
|
value: latest
|
|
723
767
|
commands:
|
|
724
768
|
- "./support/bundler_wrapper exec rake test"
|
|
725
|
-
|
|
769
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
770
|
+
- name: Ruby 2.7.1 for capistrano3
|
|
726
771
|
env_vars:
|
|
727
772
|
- name: RUBY_VERSION
|
|
728
|
-
value: 2.7.
|
|
773
|
+
value: 2.7.1
|
|
729
774
|
- name: GEMSET
|
|
730
775
|
value: capistrano3
|
|
731
776
|
- name: BUNDLE_GEMFILE
|
|
@@ -736,10 +781,11 @@ blocks:
|
|
|
736
781
|
value: latest
|
|
737
782
|
commands:
|
|
738
783
|
- "./support/bundler_wrapper exec rake test"
|
|
739
|
-
|
|
784
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
785
|
+
- name: Ruby 2.7.1 for grape
|
|
740
786
|
env_vars:
|
|
741
787
|
- name: RUBY_VERSION
|
|
742
|
-
value: 2.7.
|
|
788
|
+
value: 2.7.1
|
|
743
789
|
- name: GEMSET
|
|
744
790
|
value: grape
|
|
745
791
|
- name: BUNDLE_GEMFILE
|
|
@@ -750,10 +796,11 @@ blocks:
|
|
|
750
796
|
value: latest
|
|
751
797
|
commands:
|
|
752
798
|
- "./support/bundler_wrapper exec rake test"
|
|
753
|
-
|
|
799
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
800
|
+
- name: Ruby 2.7.1 for padrino
|
|
754
801
|
env_vars:
|
|
755
802
|
- name: RUBY_VERSION
|
|
756
|
-
value: 2.7.
|
|
803
|
+
value: 2.7.1
|
|
757
804
|
- name: GEMSET
|
|
758
805
|
value: padrino
|
|
759
806
|
- name: BUNDLE_GEMFILE
|
|
@@ -761,13 +808,14 @@ blocks:
|
|
|
761
808
|
- name: _RUBYGEMS_VERSION
|
|
762
809
|
value: latest
|
|
763
810
|
- name: _BUNDLER_VERSION
|
|
764
|
-
value:
|
|
811
|
+
value: latest
|
|
765
812
|
commands:
|
|
766
813
|
- "./support/bundler_wrapper exec rake test"
|
|
767
|
-
|
|
814
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
815
|
+
- name: Ruby 2.7.1 for que
|
|
768
816
|
env_vars:
|
|
769
817
|
- name: RUBY_VERSION
|
|
770
|
-
value: 2.7.
|
|
818
|
+
value: 2.7.1
|
|
771
819
|
- name: GEMSET
|
|
772
820
|
value: que
|
|
773
821
|
- name: BUNDLE_GEMFILE
|
|
@@ -778,10 +826,11 @@ blocks:
|
|
|
778
826
|
value: latest
|
|
779
827
|
commands:
|
|
780
828
|
- "./support/bundler_wrapper exec rake test"
|
|
781
|
-
|
|
829
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
830
|
+
- name: Ruby 2.7.1 for que_beta
|
|
782
831
|
env_vars:
|
|
783
832
|
- name: RUBY_VERSION
|
|
784
|
-
value: 2.7.
|
|
833
|
+
value: 2.7.1
|
|
785
834
|
- name: GEMSET
|
|
786
835
|
value: que_beta
|
|
787
836
|
- name: BUNDLE_GEMFILE
|
|
@@ -792,10 +841,11 @@ blocks:
|
|
|
792
841
|
value: latest
|
|
793
842
|
commands:
|
|
794
843
|
- "./support/bundler_wrapper exec rake test"
|
|
795
|
-
|
|
844
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
845
|
+
- name: Ruby 2.7.1 for rails-5.0
|
|
796
846
|
env_vars:
|
|
797
847
|
- name: RUBY_VERSION
|
|
798
|
-
value: 2.7.
|
|
848
|
+
value: 2.7.1
|
|
799
849
|
- name: GEMSET
|
|
800
850
|
value: rails-5.0
|
|
801
851
|
- name: BUNDLE_GEMFILE
|
|
@@ -806,10 +856,11 @@ blocks:
|
|
|
806
856
|
value: latest
|
|
807
857
|
commands:
|
|
808
858
|
- "./support/bundler_wrapper exec rake test"
|
|
809
|
-
|
|
859
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
860
|
+
- name: Ruby 2.7.1 for rails-5.1
|
|
810
861
|
env_vars:
|
|
811
862
|
- name: RUBY_VERSION
|
|
812
|
-
value: 2.7.
|
|
863
|
+
value: 2.7.1
|
|
813
864
|
- name: GEMSET
|
|
814
865
|
value: rails-5.1
|
|
815
866
|
- name: BUNDLE_GEMFILE
|
|
@@ -820,10 +871,11 @@ blocks:
|
|
|
820
871
|
value: latest
|
|
821
872
|
commands:
|
|
822
873
|
- "./support/bundler_wrapper exec rake test"
|
|
823
|
-
|
|
874
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
875
|
+
- name: Ruby 2.7.1 for rails-5.2
|
|
824
876
|
env_vars:
|
|
825
877
|
- name: RUBY_VERSION
|
|
826
|
-
value: 2.7.
|
|
878
|
+
value: 2.7.1
|
|
827
879
|
- name: GEMSET
|
|
828
880
|
value: rails-5.2
|
|
829
881
|
- name: BUNDLE_GEMFILE
|
|
@@ -834,10 +886,11 @@ blocks:
|
|
|
834
886
|
value: latest
|
|
835
887
|
commands:
|
|
836
888
|
- "./support/bundler_wrapper exec rake test"
|
|
837
|
-
|
|
889
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
890
|
+
- name: Ruby 2.7.1 for rails-6.0
|
|
838
891
|
env_vars:
|
|
839
892
|
- name: RUBY_VERSION
|
|
840
|
-
value: 2.7.
|
|
893
|
+
value: 2.7.1
|
|
841
894
|
- name: GEMSET
|
|
842
895
|
value: rails-6.0
|
|
843
896
|
- name: BUNDLE_GEMFILE
|
|
@@ -848,24 +901,41 @@ blocks:
|
|
|
848
901
|
value: latest
|
|
849
902
|
commands:
|
|
850
903
|
- "./support/bundler_wrapper exec rake test"
|
|
851
|
-
|
|
904
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
905
|
+
- name: Ruby 2.7.1 for resque-1
|
|
852
906
|
env_vars:
|
|
853
907
|
- name: RUBY_VERSION
|
|
854
|
-
value: 2.7.
|
|
908
|
+
value: 2.7.1
|
|
855
909
|
- name: GEMSET
|
|
856
|
-
value: resque
|
|
910
|
+
value: resque-1
|
|
857
911
|
- name: BUNDLE_GEMFILE
|
|
858
|
-
value: gemfiles/resque.gemfile
|
|
912
|
+
value: gemfiles/resque-1.gemfile
|
|
859
913
|
- name: _RUBYGEMS_VERSION
|
|
860
914
|
value: latest
|
|
861
915
|
- name: _BUNDLER_VERSION
|
|
862
916
|
value: 1.17.3
|
|
863
917
|
commands:
|
|
864
918
|
- "./support/bundler_wrapper exec rake test"
|
|
865
|
-
|
|
919
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
920
|
+
- name: Ruby 2.7.1 for resque-2
|
|
921
|
+
env_vars:
|
|
922
|
+
- name: RUBY_VERSION
|
|
923
|
+
value: 2.7.1
|
|
924
|
+
- name: GEMSET
|
|
925
|
+
value: resque-2
|
|
926
|
+
- name: BUNDLE_GEMFILE
|
|
927
|
+
value: gemfiles/resque-2.gemfile
|
|
928
|
+
- name: _RUBYGEMS_VERSION
|
|
929
|
+
value: latest
|
|
930
|
+
- name: _BUNDLER_VERSION
|
|
931
|
+
value: latest
|
|
932
|
+
commands:
|
|
933
|
+
- "./support/bundler_wrapper exec rake test"
|
|
934
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
935
|
+
- name: Ruby 2.7.1 for sequel
|
|
866
936
|
env_vars:
|
|
867
937
|
- name: RUBY_VERSION
|
|
868
|
-
value: 2.7.
|
|
938
|
+
value: 2.7.1
|
|
869
939
|
- name: GEMSET
|
|
870
940
|
value: sequel
|
|
871
941
|
- name: BUNDLE_GEMFILE
|
|
@@ -876,10 +946,11 @@ blocks:
|
|
|
876
946
|
value: latest
|
|
877
947
|
commands:
|
|
878
948
|
- "./support/bundler_wrapper exec rake test"
|
|
879
|
-
|
|
949
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
950
|
+
- name: Ruby 2.7.1 for sequel-435
|
|
880
951
|
env_vars:
|
|
881
952
|
- name: RUBY_VERSION
|
|
882
|
-
value: 2.7.
|
|
953
|
+
value: 2.7.1
|
|
883
954
|
- name: GEMSET
|
|
884
955
|
value: sequel-435
|
|
885
956
|
- name: BUNDLE_GEMFILE
|
|
@@ -890,10 +961,11 @@ blocks:
|
|
|
890
961
|
value: latest
|
|
891
962
|
commands:
|
|
892
963
|
- "./support/bundler_wrapper exec rake test"
|
|
893
|
-
|
|
964
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
965
|
+
- name: Ruby 2.7.1 for sinatra
|
|
894
966
|
env_vars:
|
|
895
967
|
- name: RUBY_VERSION
|
|
896
|
-
value: 2.7.
|
|
968
|
+
value: 2.7.1
|
|
897
969
|
- name: GEMSET
|
|
898
970
|
value: sinatra
|
|
899
971
|
- name: BUNDLE_GEMFILE
|
|
@@ -904,10 +976,11 @@ blocks:
|
|
|
904
976
|
value: latest
|
|
905
977
|
commands:
|
|
906
978
|
- "./support/bundler_wrapper exec rake test"
|
|
907
|
-
|
|
979
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
980
|
+
- name: Ruby 2.7.1 for webmachine
|
|
908
981
|
env_vars:
|
|
909
982
|
- name: RUBY_VERSION
|
|
910
|
-
value: 2.7.
|
|
983
|
+
value: 2.7.1
|
|
911
984
|
- name: GEMSET
|
|
912
985
|
value: webmachine
|
|
913
986
|
- name: BUNDLE_GEMFILE
|
|
@@ -918,6 +991,7 @@ blocks:
|
|
|
918
991
|
value: latest
|
|
919
992
|
commands:
|
|
920
993
|
- "./support/bundler_wrapper exec rake test"
|
|
994
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
921
995
|
- name: Ruby jruby-9.1.17.0
|
|
922
996
|
dependencies:
|
|
923
997
|
- Validation
|
|
@@ -940,6 +1014,7 @@ blocks:
|
|
|
940
1014
|
value: latest
|
|
941
1015
|
commands:
|
|
942
1016
|
- "./support/bundler_wrapper exec rake test"
|
|
1017
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
943
1018
|
- name: Ruby jruby-9.1.17.0 - Gems
|
|
944
1019
|
dependencies:
|
|
945
1020
|
- Ruby jruby-9.1.17.0
|
|
@@ -962,3 +1037,4 @@ blocks:
|
|
|
962
1037
|
value: latest
|
|
963
1038
|
commands:
|
|
964
1039
|
- "./support/bundler_wrapper exec rake test"
|
|
1040
|
+
- "./support/bundler_wrapper exec rake test:failure"
|