appsignal 3.2.1-java → 3.3.0-java
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_todo.yml +1 -0
- data/.semaphore/semaphore.yml +404 -264
- data/CHANGELOG.md +13 -0
- data/README.md +1 -0
- data/build_matrix.yml +60 -46
- data/gemfiles/hanami.gemfile +7 -0
- data/lib/appsignal/cli/install.rb +21 -0
- data/lib/appsignal/integrations/hanami.rb +62 -0
- data/lib/appsignal/logger.rb +8 -2
- data/lib/appsignal/probes/mri.rb +32 -11
- data/lib/appsignal/version.rb +1 -1
- data/spec/lib/appsignal/auth_check_spec.rb +1 -6
- data/spec/lib/appsignal/cli/install_spec.rb +67 -1
- data/spec/lib/appsignal/integrations/hanami_spec.rb +116 -0
- data/spec/lib/appsignal/logger_spec.rb +28 -0
- data/spec/lib/appsignal/probes/mri_spec.rb +8 -3
- data/spec/spec_helper.rb +5 -0
- data/spec/support/hanami/hanami_app.rb +31 -0
- data/spec/support/helpers/dependency_helper.rb +16 -0
- metadata +12 -6
data/.semaphore/semaphore.yml
CHANGED
|
@@ -24,6 +24,12 @@ global_job_config:
|
|
|
24
24
|
commands:
|
|
25
25
|
- checkout
|
|
26
26
|
- rm -f $HOME/.rbenv/plugins/rbenv-gem-rehash/etc/rbenv.d/exec/~gem-rehash.bash
|
|
27
|
+
- |
|
|
28
|
+
if [ -n "$_LIBYAML" ]; then
|
|
29
|
+
install-package --update libyaml-dev
|
|
30
|
+
else
|
|
31
|
+
echo Skipping libyaml-dev install
|
|
32
|
+
fi
|
|
27
33
|
- |
|
|
28
34
|
if [ -n "$_C_VERSION" ]; then
|
|
29
35
|
sem-version c $_C_VERSION
|
|
@@ -52,8 +58,10 @@ blocks:
|
|
|
52
58
|
task:
|
|
53
59
|
prologue:
|
|
54
60
|
commands:
|
|
55
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
56
|
-
|
|
61
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
62
|
+
appsignal.gemspec)
|
|
63
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
64
|
+
appsignal.gemspec)
|
|
57
65
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
58
66
|
jobs:
|
|
59
67
|
- name: Validate CI setup
|
|
@@ -69,17 +77,19 @@ blocks:
|
|
|
69
77
|
epilogue:
|
|
70
78
|
on_pass:
|
|
71
79
|
commands:
|
|
72
|
-
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
73
|
-
.bundle
|
|
74
|
-
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
75
|
-
$HOME/.gem
|
|
80
|
+
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
81
|
+
appsignal.gemspec) .bundle
|
|
82
|
+
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
83
|
+
appsignal.gemspec) $HOME/.gem
|
|
76
84
|
- name: Ruby linters
|
|
77
85
|
dependencies: []
|
|
78
86
|
task:
|
|
79
87
|
prologue:
|
|
80
88
|
commands:
|
|
81
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
82
|
-
|
|
89
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
90
|
+
appsignal.gemspec)
|
|
91
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
92
|
+
appsignal.gemspec)
|
|
83
93
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
84
94
|
jobs:
|
|
85
95
|
- name: RuboCop
|
|
@@ -95,10 +105,10 @@ blocks:
|
|
|
95
105
|
epilogue:
|
|
96
106
|
on_pass:
|
|
97
107
|
commands:
|
|
98
|
-
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
99
|
-
.bundle
|
|
100
|
-
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
101
|
-
$HOME/.gem
|
|
108
|
+
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
109
|
+
appsignal.gemspec) .bundle
|
|
110
|
+
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
111
|
+
appsignal.gemspec) $HOME/.gem
|
|
102
112
|
- name: Other linters
|
|
103
113
|
dependencies: []
|
|
104
114
|
task:
|
|
@@ -140,8 +150,10 @@ blocks:
|
|
|
140
150
|
task:
|
|
141
151
|
prologue:
|
|
142
152
|
commands:
|
|
143
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
144
|
-
|
|
153
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
154
|
+
appsignal.gemspec)
|
|
155
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
156
|
+
appsignal.gemspec)
|
|
145
157
|
- "./support/install_deps"
|
|
146
158
|
- bundle config set clean 'true'
|
|
147
159
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -149,10 +161,10 @@ blocks:
|
|
|
149
161
|
epilogue: &1
|
|
150
162
|
on_pass:
|
|
151
163
|
commands:
|
|
152
|
-
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
153
|
-
.bundle
|
|
154
|
-
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
|
|
155
|
-
$HOME/.gem
|
|
164
|
+
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
165
|
+
appsignal.gemspec) .bundle
|
|
166
|
+
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
167
|
+
appsignal.gemspec) $HOME/.gem
|
|
156
168
|
on_fail:
|
|
157
169
|
commands:
|
|
158
170
|
- "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report
|
|
@@ -192,8 +204,10 @@ blocks:
|
|
|
192
204
|
task:
|
|
193
205
|
prologue:
|
|
194
206
|
commands:
|
|
195
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
196
|
-
|
|
207
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
208
|
+
appsignal.gemspec)
|
|
209
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
210
|
+
appsignal.gemspec)
|
|
197
211
|
- "./support/install_deps"
|
|
198
212
|
- bundle config set clean 'true'
|
|
199
213
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -242,8 +256,10 @@ blocks:
|
|
|
242
256
|
task:
|
|
243
257
|
prologue:
|
|
244
258
|
commands:
|
|
245
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
246
|
-
|
|
259
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
260
|
+
appsignal.gemspec)
|
|
261
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
262
|
+
appsignal.gemspec)
|
|
247
263
|
- "./support/install_deps"
|
|
248
264
|
- bundle config set clean 'true'
|
|
249
265
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -275,8 +291,10 @@ blocks:
|
|
|
275
291
|
task:
|
|
276
292
|
prologue:
|
|
277
293
|
commands:
|
|
278
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
279
|
-
|
|
294
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
295
|
+
appsignal.gemspec)
|
|
296
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
297
|
+
appsignal.gemspec)
|
|
280
298
|
- "./support/install_deps"
|
|
281
299
|
- bundle config set clean 'true'
|
|
282
300
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -308,8 +326,10 @@ blocks:
|
|
|
308
326
|
task:
|
|
309
327
|
prologue:
|
|
310
328
|
commands:
|
|
311
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
312
|
-
|
|
329
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
330
|
+
appsignal.gemspec)
|
|
331
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
332
|
+
appsignal.gemspec)
|
|
313
333
|
- "./support/install_deps"
|
|
314
334
|
- bundle config set clean 'true'
|
|
315
335
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -341,8 +361,10 @@ blocks:
|
|
|
341
361
|
task:
|
|
342
362
|
prologue:
|
|
343
363
|
commands:
|
|
344
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
345
|
-
|
|
364
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
365
|
+
appsignal.gemspec)
|
|
366
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
367
|
+
appsignal.gemspec)
|
|
346
368
|
- "./support/install_deps"
|
|
347
369
|
- bundle config set clean 'true'
|
|
348
370
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -374,8 +396,10 @@ blocks:
|
|
|
374
396
|
task:
|
|
375
397
|
prologue:
|
|
376
398
|
commands:
|
|
377
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
378
|
-
|
|
399
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
400
|
+
appsignal.gemspec)
|
|
401
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
402
|
+
appsignal.gemspec)
|
|
379
403
|
- "./support/install_deps"
|
|
380
404
|
- bundle config set clean 'true'
|
|
381
405
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -407,8 +431,10 @@ blocks:
|
|
|
407
431
|
task:
|
|
408
432
|
prologue:
|
|
409
433
|
commands:
|
|
410
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
411
|
-
|
|
434
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
435
|
+
appsignal.gemspec)
|
|
436
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
437
|
+
appsignal.gemspec)
|
|
412
438
|
- "./support/install_deps"
|
|
413
439
|
- bundle config set clean 'true'
|
|
414
440
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -475,8 +501,10 @@ blocks:
|
|
|
475
501
|
task:
|
|
476
502
|
prologue:
|
|
477
503
|
commands:
|
|
478
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
479
|
-
|
|
504
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
505
|
+
appsignal.gemspec)
|
|
506
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
507
|
+
appsignal.gemspec)
|
|
480
508
|
- "./support/install_deps"
|
|
481
509
|
- bundle config set clean 'true'
|
|
482
510
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -508,8 +536,10 @@ blocks:
|
|
|
508
536
|
task:
|
|
509
537
|
prologue:
|
|
510
538
|
commands:
|
|
511
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
512
|
-
|
|
539
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
540
|
+
appsignal.gemspec)
|
|
541
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
542
|
+
appsignal.gemspec)
|
|
513
543
|
- "./support/install_deps"
|
|
514
544
|
- bundle config set clean 'true'
|
|
515
545
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
@@ -840,28 +870,30 @@ blocks:
|
|
|
840
870
|
value: latest
|
|
841
871
|
commands:
|
|
842
872
|
- "./support/bundler_wrapper exec rake test"
|
|
843
|
-
- name: Ruby 2.7.
|
|
873
|
+
- name: Ruby 2.7.7
|
|
844
874
|
dependencies:
|
|
845
875
|
- Validation
|
|
846
876
|
task:
|
|
847
877
|
prologue:
|
|
848
878
|
commands:
|
|
849
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
850
|
-
|
|
879
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
880
|
+
appsignal.gemspec)
|
|
881
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
882
|
+
appsignal.gemspec)
|
|
851
883
|
- "./support/install_deps"
|
|
852
884
|
- bundle config set clean 'true'
|
|
853
885
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
854
886
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
855
887
|
epilogue: *1
|
|
856
888
|
jobs:
|
|
857
|
-
- name: Ruby 2.7.
|
|
889
|
+
- name: Ruby 2.7.7 for no_dependencies
|
|
858
890
|
env_vars:
|
|
859
891
|
- *2
|
|
860
892
|
- *3
|
|
861
893
|
- *4
|
|
862
894
|
- *5
|
|
863
895
|
- name: RUBY_VERSION
|
|
864
|
-
value: 2.7.
|
|
896
|
+
value: 2.7.7
|
|
865
897
|
- name: GEMSET
|
|
866
898
|
value: no_dependencies
|
|
867
899
|
- name: BUNDLE_GEMFILE
|
|
@@ -873,28 +905,30 @@ blocks:
|
|
|
873
905
|
commands:
|
|
874
906
|
- "./support/bundler_wrapper exec rake test"
|
|
875
907
|
- "./support/bundler_wrapper exec rake test:failure"
|
|
876
|
-
- name: Ruby 2.7.
|
|
908
|
+
- name: Ruby 2.7.7 - Gems
|
|
877
909
|
dependencies:
|
|
878
|
-
- Ruby 2.7.
|
|
910
|
+
- Ruby 2.7.7
|
|
879
911
|
task:
|
|
880
912
|
prologue:
|
|
881
913
|
commands:
|
|
882
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
883
|
-
|
|
914
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
915
|
+
appsignal.gemspec)
|
|
916
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
917
|
+
appsignal.gemspec)
|
|
884
918
|
- "./support/install_deps"
|
|
885
919
|
- bundle config set clean 'true'
|
|
886
920
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
887
921
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
888
922
|
epilogue: *1
|
|
889
923
|
jobs:
|
|
890
|
-
- name: Ruby 2.7.
|
|
924
|
+
- name: Ruby 2.7.7 for capistrano2
|
|
891
925
|
env_vars:
|
|
892
926
|
- *2
|
|
893
927
|
- *3
|
|
894
928
|
- *4
|
|
895
929
|
- *5
|
|
896
930
|
- name: RUBY_VERSION
|
|
897
|
-
value: 2.7.
|
|
931
|
+
value: 2.7.7
|
|
898
932
|
- name: GEMSET
|
|
899
933
|
value: capistrano2
|
|
900
934
|
- name: BUNDLE_GEMFILE
|
|
@@ -905,14 +939,14 @@ blocks:
|
|
|
905
939
|
value: latest
|
|
906
940
|
commands:
|
|
907
941
|
- "./support/bundler_wrapper exec rake test"
|
|
908
|
-
- name: Ruby 2.7.
|
|
942
|
+
- name: Ruby 2.7.7 for capistrano3
|
|
909
943
|
env_vars:
|
|
910
944
|
- *2
|
|
911
945
|
- *3
|
|
912
946
|
- *4
|
|
913
947
|
- *5
|
|
914
948
|
- name: RUBY_VERSION
|
|
915
|
-
value: 2.7.
|
|
949
|
+
value: 2.7.7
|
|
916
950
|
- name: GEMSET
|
|
917
951
|
value: capistrano3
|
|
918
952
|
- name: BUNDLE_GEMFILE
|
|
@@ -923,14 +957,14 @@ blocks:
|
|
|
923
957
|
value: latest
|
|
924
958
|
commands:
|
|
925
959
|
- "./support/bundler_wrapper exec rake test"
|
|
926
|
-
- name: Ruby 2.7.
|
|
960
|
+
- name: Ruby 2.7.7 for grape
|
|
927
961
|
env_vars:
|
|
928
962
|
- *2
|
|
929
963
|
- *3
|
|
930
964
|
- *4
|
|
931
965
|
- *5
|
|
932
966
|
- name: RUBY_VERSION
|
|
933
|
-
value: 2.7.
|
|
967
|
+
value: 2.7.7
|
|
934
968
|
- name: GEMSET
|
|
935
969
|
value: grape
|
|
936
970
|
- name: BUNDLE_GEMFILE
|
|
@@ -941,14 +975,14 @@ blocks:
|
|
|
941
975
|
value: latest
|
|
942
976
|
commands:
|
|
943
977
|
- "./support/bundler_wrapper exec rake test"
|
|
944
|
-
- name: Ruby 2.7.
|
|
978
|
+
- name: Ruby 2.7.7 for http5
|
|
945
979
|
env_vars:
|
|
946
980
|
- *2
|
|
947
981
|
- *3
|
|
948
982
|
- *4
|
|
949
983
|
- *5
|
|
950
984
|
- name: RUBY_VERSION
|
|
951
|
-
value: 2.7.
|
|
985
|
+
value: 2.7.7
|
|
952
986
|
- name: GEMSET
|
|
953
987
|
value: http5
|
|
954
988
|
- name: BUNDLE_GEMFILE
|
|
@@ -959,14 +993,14 @@ blocks:
|
|
|
959
993
|
value: latest
|
|
960
994
|
commands:
|
|
961
995
|
- "./support/bundler_wrapper exec rake test"
|
|
962
|
-
- name: Ruby 2.7.
|
|
996
|
+
- name: Ruby 2.7.7 for padrino
|
|
963
997
|
env_vars:
|
|
964
998
|
- *2
|
|
965
999
|
- *3
|
|
966
1000
|
- *4
|
|
967
1001
|
- *5
|
|
968
1002
|
- name: RUBY_VERSION
|
|
969
|
-
value: 2.7.
|
|
1003
|
+
value: 2.7.7
|
|
970
1004
|
- name: GEMSET
|
|
971
1005
|
value: padrino
|
|
972
1006
|
- name: BUNDLE_GEMFILE
|
|
@@ -977,14 +1011,14 @@ blocks:
|
|
|
977
1011
|
value: latest
|
|
978
1012
|
commands:
|
|
979
1013
|
- "./support/bundler_wrapper exec rake test"
|
|
980
|
-
- name: Ruby 2.7.
|
|
1014
|
+
- name: Ruby 2.7.7 for que
|
|
981
1015
|
env_vars:
|
|
982
1016
|
- *2
|
|
983
1017
|
- *3
|
|
984
1018
|
- *4
|
|
985
1019
|
- *5
|
|
986
1020
|
- name: RUBY_VERSION
|
|
987
|
-
value: 2.7.
|
|
1021
|
+
value: 2.7.7
|
|
988
1022
|
- name: GEMSET
|
|
989
1023
|
value: que
|
|
990
1024
|
- name: BUNDLE_GEMFILE
|
|
@@ -995,14 +1029,14 @@ blocks:
|
|
|
995
1029
|
value: latest
|
|
996
1030
|
commands:
|
|
997
1031
|
- "./support/bundler_wrapper exec rake test"
|
|
998
|
-
- name: Ruby 2.7.
|
|
1032
|
+
- name: Ruby 2.7.7 for que_beta
|
|
999
1033
|
env_vars:
|
|
1000
1034
|
- *2
|
|
1001
1035
|
- *3
|
|
1002
1036
|
- *4
|
|
1003
1037
|
- *5
|
|
1004
1038
|
- name: RUBY_VERSION
|
|
1005
|
-
value: 2.7.
|
|
1039
|
+
value: 2.7.7
|
|
1006
1040
|
- name: GEMSET
|
|
1007
1041
|
value: que_beta
|
|
1008
1042
|
- name: BUNDLE_GEMFILE
|
|
@@ -1013,14 +1047,14 @@ blocks:
|
|
|
1013
1047
|
value: latest
|
|
1014
1048
|
commands:
|
|
1015
1049
|
- "./support/bundler_wrapper exec rake test"
|
|
1016
|
-
- name: Ruby 2.7.
|
|
1050
|
+
- name: Ruby 2.7.7 for rails-5.0
|
|
1017
1051
|
env_vars:
|
|
1018
1052
|
- *2
|
|
1019
1053
|
- *3
|
|
1020
1054
|
- *4
|
|
1021
1055
|
- *5
|
|
1022
1056
|
- name: RUBY_VERSION
|
|
1023
|
-
value: 2.7.
|
|
1057
|
+
value: 2.7.7
|
|
1024
1058
|
- name: GEMSET
|
|
1025
1059
|
value: rails-5.0
|
|
1026
1060
|
- name: BUNDLE_GEMFILE
|
|
@@ -1031,14 +1065,14 @@ blocks:
|
|
|
1031
1065
|
value: latest
|
|
1032
1066
|
commands:
|
|
1033
1067
|
- "./support/bundler_wrapper exec rake test"
|
|
1034
|
-
- name: Ruby 2.7.
|
|
1068
|
+
- name: Ruby 2.7.7 for rails-5.1
|
|
1035
1069
|
env_vars:
|
|
1036
1070
|
- *2
|
|
1037
1071
|
- *3
|
|
1038
1072
|
- *4
|
|
1039
1073
|
- *5
|
|
1040
1074
|
- name: RUBY_VERSION
|
|
1041
|
-
value: 2.7.
|
|
1075
|
+
value: 2.7.7
|
|
1042
1076
|
- name: GEMSET
|
|
1043
1077
|
value: rails-5.1
|
|
1044
1078
|
- name: BUNDLE_GEMFILE
|
|
@@ -1049,14 +1083,14 @@ blocks:
|
|
|
1049
1083
|
value: latest
|
|
1050
1084
|
commands:
|
|
1051
1085
|
- "./support/bundler_wrapper exec rake test"
|
|
1052
|
-
- name: Ruby 2.7.
|
|
1086
|
+
- name: Ruby 2.7.7 for rails-5.2
|
|
1053
1087
|
env_vars:
|
|
1054
1088
|
- *2
|
|
1055
1089
|
- *3
|
|
1056
1090
|
- *4
|
|
1057
1091
|
- *5
|
|
1058
1092
|
- name: RUBY_VERSION
|
|
1059
|
-
value: 2.7.
|
|
1093
|
+
value: 2.7.7
|
|
1060
1094
|
- name: GEMSET
|
|
1061
1095
|
value: rails-5.2
|
|
1062
1096
|
- name: BUNDLE_GEMFILE
|
|
@@ -1067,14 +1101,14 @@ blocks:
|
|
|
1067
1101
|
value: latest
|
|
1068
1102
|
commands:
|
|
1069
1103
|
- "./support/bundler_wrapper exec rake test"
|
|
1070
|
-
- name: Ruby 2.7.
|
|
1104
|
+
- name: Ruby 2.7.7 for rails-6.0
|
|
1071
1105
|
env_vars:
|
|
1072
1106
|
- *2
|
|
1073
1107
|
- *3
|
|
1074
1108
|
- *4
|
|
1075
1109
|
- *5
|
|
1076
1110
|
- name: RUBY_VERSION
|
|
1077
|
-
value: 2.7.
|
|
1111
|
+
value: 2.7.7
|
|
1078
1112
|
- name: GEMSET
|
|
1079
1113
|
value: rails-6.0
|
|
1080
1114
|
- name: BUNDLE_GEMFILE
|
|
@@ -1085,14 +1119,14 @@ blocks:
|
|
|
1085
1119
|
value: latest
|
|
1086
1120
|
commands:
|
|
1087
1121
|
- "./support/bundler_wrapper exec rake test"
|
|
1088
|
-
- name: Ruby 2.7.
|
|
1122
|
+
- name: Ruby 2.7.7 for rails-6.1
|
|
1089
1123
|
env_vars:
|
|
1090
1124
|
- *2
|
|
1091
1125
|
- *3
|
|
1092
1126
|
- *4
|
|
1093
1127
|
- *5
|
|
1094
1128
|
- name: RUBY_VERSION
|
|
1095
|
-
value: 2.7.
|
|
1129
|
+
value: 2.7.7
|
|
1096
1130
|
- name: GEMSET
|
|
1097
1131
|
value: rails-6.1
|
|
1098
1132
|
- name: BUNDLE_GEMFILE
|
|
@@ -1103,14 +1137,14 @@ blocks:
|
|
|
1103
1137
|
value: latest
|
|
1104
1138
|
commands:
|
|
1105
1139
|
- "./support/bundler_wrapper exec rake test"
|
|
1106
|
-
- name: Ruby 2.7.
|
|
1140
|
+
- name: Ruby 2.7.7 for rails-7.0
|
|
1107
1141
|
env_vars:
|
|
1108
1142
|
- *2
|
|
1109
1143
|
- *3
|
|
1110
1144
|
- *4
|
|
1111
1145
|
- *5
|
|
1112
1146
|
- name: RUBY_VERSION
|
|
1113
|
-
value: 2.7.
|
|
1147
|
+
value: 2.7.7
|
|
1114
1148
|
- name: GEMSET
|
|
1115
1149
|
value: rails-7.0
|
|
1116
1150
|
- name: BUNDLE_GEMFILE
|
|
@@ -1121,14 +1155,14 @@ blocks:
|
|
|
1121
1155
|
value: latest
|
|
1122
1156
|
commands:
|
|
1123
1157
|
- "./support/bundler_wrapper exec rake test"
|
|
1124
|
-
- name: Ruby 2.7.
|
|
1158
|
+
- name: Ruby 2.7.7 for resque-1
|
|
1125
1159
|
env_vars:
|
|
1126
1160
|
- *2
|
|
1127
1161
|
- *3
|
|
1128
1162
|
- *4
|
|
1129
1163
|
- *5
|
|
1130
1164
|
- name: RUBY_VERSION
|
|
1131
|
-
value: 2.7.
|
|
1165
|
+
value: 2.7.7
|
|
1132
1166
|
- name: GEMSET
|
|
1133
1167
|
value: resque-1
|
|
1134
1168
|
- name: BUNDLE_GEMFILE
|
|
@@ -1139,14 +1173,14 @@ blocks:
|
|
|
1139
1173
|
value: 1.17.3
|
|
1140
1174
|
commands:
|
|
1141
1175
|
- "./support/bundler_wrapper exec rake test"
|
|
1142
|
-
- name: Ruby 2.7.
|
|
1176
|
+
- name: Ruby 2.7.7 for resque-2
|
|
1143
1177
|
env_vars:
|
|
1144
1178
|
- *2
|
|
1145
1179
|
- *3
|
|
1146
1180
|
- *4
|
|
1147
1181
|
- *5
|
|
1148
1182
|
- name: RUBY_VERSION
|
|
1149
|
-
value: 2.7.
|
|
1183
|
+
value: 2.7.7
|
|
1150
1184
|
- name: GEMSET
|
|
1151
1185
|
value: resque-2
|
|
1152
1186
|
- name: BUNDLE_GEMFILE
|
|
@@ -1157,14 +1191,14 @@ blocks:
|
|
|
1157
1191
|
value: latest
|
|
1158
1192
|
commands:
|
|
1159
1193
|
- "./support/bundler_wrapper exec rake test"
|
|
1160
|
-
- name: Ruby 2.7.
|
|
1194
|
+
- name: Ruby 2.7.7 for sequel
|
|
1161
1195
|
env_vars:
|
|
1162
1196
|
- *2
|
|
1163
1197
|
- *3
|
|
1164
1198
|
- *4
|
|
1165
1199
|
- *5
|
|
1166
1200
|
- name: RUBY_VERSION
|
|
1167
|
-
value: 2.7.
|
|
1201
|
+
value: 2.7.7
|
|
1168
1202
|
- name: GEMSET
|
|
1169
1203
|
value: sequel
|
|
1170
1204
|
- name: BUNDLE_GEMFILE
|
|
@@ -1175,14 +1209,14 @@ blocks:
|
|
|
1175
1209
|
value: latest
|
|
1176
1210
|
commands:
|
|
1177
1211
|
- "./support/bundler_wrapper exec rake test"
|
|
1178
|
-
- name: Ruby 2.7.
|
|
1212
|
+
- name: Ruby 2.7.7 for sequel-435
|
|
1179
1213
|
env_vars:
|
|
1180
1214
|
- *2
|
|
1181
1215
|
- *3
|
|
1182
1216
|
- *4
|
|
1183
1217
|
- *5
|
|
1184
1218
|
- name: RUBY_VERSION
|
|
1185
|
-
value: 2.7.
|
|
1219
|
+
value: 2.7.7
|
|
1186
1220
|
- name: GEMSET
|
|
1187
1221
|
value: sequel-435
|
|
1188
1222
|
- name: BUNDLE_GEMFILE
|
|
@@ -1193,14 +1227,14 @@ blocks:
|
|
|
1193
1227
|
value: latest
|
|
1194
1228
|
commands:
|
|
1195
1229
|
- "./support/bundler_wrapper exec rake test"
|
|
1196
|
-
- name: Ruby 2.7.
|
|
1230
|
+
- name: Ruby 2.7.7 for sinatra
|
|
1197
1231
|
env_vars:
|
|
1198
1232
|
- *2
|
|
1199
1233
|
- *3
|
|
1200
1234
|
- *4
|
|
1201
1235
|
- *5
|
|
1202
1236
|
- name: RUBY_VERSION
|
|
1203
|
-
value: 2.7.
|
|
1237
|
+
value: 2.7.7
|
|
1204
1238
|
- name: GEMSET
|
|
1205
1239
|
value: sinatra
|
|
1206
1240
|
- name: BUNDLE_GEMFILE
|
|
@@ -1211,14 +1245,14 @@ blocks:
|
|
|
1211
1245
|
value: latest
|
|
1212
1246
|
commands:
|
|
1213
1247
|
- "./support/bundler_wrapper exec rake test"
|
|
1214
|
-
- name: Ruby 2.7.
|
|
1248
|
+
- name: Ruby 2.7.7 for webmachine
|
|
1215
1249
|
env_vars:
|
|
1216
1250
|
- *2
|
|
1217
1251
|
- *3
|
|
1218
1252
|
- *4
|
|
1219
1253
|
- *5
|
|
1220
1254
|
- name: RUBY_VERSION
|
|
1221
|
-
value: 2.7.
|
|
1255
|
+
value: 2.7.7
|
|
1222
1256
|
- name: GEMSET
|
|
1223
1257
|
value: webmachine
|
|
1224
1258
|
- name: BUNDLE_GEMFILE
|
|
@@ -1229,28 +1263,30 @@ blocks:
|
|
|
1229
1263
|
value: latest
|
|
1230
1264
|
commands:
|
|
1231
1265
|
- "./support/bundler_wrapper exec rake test"
|
|
1232
|
-
- name: Ruby 3.0.
|
|
1266
|
+
- name: Ruby 3.0.4
|
|
1233
1267
|
dependencies:
|
|
1234
1268
|
- Validation
|
|
1235
1269
|
task:
|
|
1236
1270
|
prologue:
|
|
1237
1271
|
commands:
|
|
1238
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
1239
|
-
|
|
1272
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1273
|
+
appsignal.gemspec)
|
|
1274
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1275
|
+
appsignal.gemspec)
|
|
1240
1276
|
- "./support/install_deps"
|
|
1241
1277
|
- bundle config set clean 'true'
|
|
1242
1278
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
1243
1279
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
1244
1280
|
epilogue: *1
|
|
1245
1281
|
jobs:
|
|
1246
|
-
- name: Ruby 3.0.
|
|
1282
|
+
- name: Ruby 3.0.4 for no_dependencies
|
|
1247
1283
|
env_vars:
|
|
1248
1284
|
- *2
|
|
1249
1285
|
- *3
|
|
1250
1286
|
- *4
|
|
1251
1287
|
- *5
|
|
1252
1288
|
- name: RUBY_VERSION
|
|
1253
|
-
value: 3.0.
|
|
1289
|
+
value: 3.0.4
|
|
1254
1290
|
- name: GEMSET
|
|
1255
1291
|
value: no_dependencies
|
|
1256
1292
|
- name: BUNDLE_GEMFILE
|
|
@@ -1262,28 +1298,30 @@ blocks:
|
|
|
1262
1298
|
commands:
|
|
1263
1299
|
- "./support/bundler_wrapper exec rake test"
|
|
1264
1300
|
- "./support/bundler_wrapper exec rake test:failure"
|
|
1265
|
-
- name: Ruby 3.0.
|
|
1301
|
+
- name: Ruby 3.0.4 - Gems
|
|
1266
1302
|
dependencies:
|
|
1267
|
-
- Ruby 3.0.
|
|
1303
|
+
- Ruby 3.0.4
|
|
1268
1304
|
task:
|
|
1269
1305
|
prologue:
|
|
1270
1306
|
commands:
|
|
1271
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
1272
|
-
|
|
1307
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1308
|
+
appsignal.gemspec)
|
|
1309
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1310
|
+
appsignal.gemspec)
|
|
1273
1311
|
- "./support/install_deps"
|
|
1274
1312
|
- bundle config set clean 'true'
|
|
1275
1313
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
1276
1314
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
1277
1315
|
epilogue: *1
|
|
1278
1316
|
jobs:
|
|
1279
|
-
- name: Ruby 3.0.
|
|
1317
|
+
- name: Ruby 3.0.4 for capistrano2
|
|
1280
1318
|
env_vars:
|
|
1281
1319
|
- *2
|
|
1282
1320
|
- *3
|
|
1283
1321
|
- *4
|
|
1284
1322
|
- *5
|
|
1285
1323
|
- name: RUBY_VERSION
|
|
1286
|
-
value: 3.0.
|
|
1324
|
+
value: 3.0.4
|
|
1287
1325
|
- name: GEMSET
|
|
1288
1326
|
value: capistrano2
|
|
1289
1327
|
- name: BUNDLE_GEMFILE
|
|
@@ -1294,14 +1332,14 @@ blocks:
|
|
|
1294
1332
|
value: latest
|
|
1295
1333
|
commands:
|
|
1296
1334
|
- "./support/bundler_wrapper exec rake test"
|
|
1297
|
-
- name: Ruby 3.0.
|
|
1335
|
+
- name: Ruby 3.0.4 for capistrano3
|
|
1298
1336
|
env_vars:
|
|
1299
1337
|
- *2
|
|
1300
1338
|
- *3
|
|
1301
1339
|
- *4
|
|
1302
1340
|
- *5
|
|
1303
1341
|
- name: RUBY_VERSION
|
|
1304
|
-
value: 3.0.
|
|
1342
|
+
value: 3.0.4
|
|
1305
1343
|
- name: GEMSET
|
|
1306
1344
|
value: capistrano3
|
|
1307
1345
|
- name: BUNDLE_GEMFILE
|
|
@@ -1312,14 +1350,14 @@ blocks:
|
|
|
1312
1350
|
value: latest
|
|
1313
1351
|
commands:
|
|
1314
1352
|
- "./support/bundler_wrapper exec rake test"
|
|
1315
|
-
- name: Ruby 3.0.
|
|
1353
|
+
- name: Ruby 3.0.4 for grape
|
|
1316
1354
|
env_vars:
|
|
1317
1355
|
- *2
|
|
1318
1356
|
- *3
|
|
1319
1357
|
- *4
|
|
1320
1358
|
- *5
|
|
1321
1359
|
- name: RUBY_VERSION
|
|
1322
|
-
value: 3.0.
|
|
1360
|
+
value: 3.0.4
|
|
1323
1361
|
- name: GEMSET
|
|
1324
1362
|
value: grape
|
|
1325
1363
|
- name: BUNDLE_GEMFILE
|
|
@@ -1330,14 +1368,32 @@ blocks:
|
|
|
1330
1368
|
value: latest
|
|
1331
1369
|
commands:
|
|
1332
1370
|
- "./support/bundler_wrapper exec rake test"
|
|
1333
|
-
- name: Ruby 3.0.
|
|
1371
|
+
- name: Ruby 3.0.4 for hanami
|
|
1372
|
+
env_vars:
|
|
1373
|
+
- *2
|
|
1374
|
+
- *3
|
|
1375
|
+
- *4
|
|
1376
|
+
- *5
|
|
1377
|
+
- name: RUBY_VERSION
|
|
1378
|
+
value: 3.0.4
|
|
1379
|
+
- name: GEMSET
|
|
1380
|
+
value: hanami
|
|
1381
|
+
- name: BUNDLE_GEMFILE
|
|
1382
|
+
value: gemfiles/hanami.gemfile
|
|
1383
|
+
- name: _RUBYGEMS_VERSION
|
|
1384
|
+
value: latest
|
|
1385
|
+
- name: _BUNDLER_VERSION
|
|
1386
|
+
value: latest
|
|
1387
|
+
commands:
|
|
1388
|
+
- "./support/bundler_wrapper exec rake test"
|
|
1389
|
+
- name: Ruby 3.0.4 for http5
|
|
1334
1390
|
env_vars:
|
|
1335
1391
|
- *2
|
|
1336
1392
|
- *3
|
|
1337
1393
|
- *4
|
|
1338
1394
|
- *5
|
|
1339
1395
|
- name: RUBY_VERSION
|
|
1340
|
-
value: 3.0.
|
|
1396
|
+
value: 3.0.4
|
|
1341
1397
|
- name: GEMSET
|
|
1342
1398
|
value: http5
|
|
1343
1399
|
- name: BUNDLE_GEMFILE
|
|
@@ -1348,14 +1404,14 @@ blocks:
|
|
|
1348
1404
|
value: latest
|
|
1349
1405
|
commands:
|
|
1350
1406
|
- "./support/bundler_wrapper exec rake test"
|
|
1351
|
-
- name: Ruby 3.0.
|
|
1407
|
+
- name: Ruby 3.0.4 for padrino
|
|
1352
1408
|
env_vars:
|
|
1353
1409
|
- *2
|
|
1354
1410
|
- *3
|
|
1355
1411
|
- *4
|
|
1356
1412
|
- *5
|
|
1357
1413
|
- name: RUBY_VERSION
|
|
1358
|
-
value: 3.0.
|
|
1414
|
+
value: 3.0.4
|
|
1359
1415
|
- name: GEMSET
|
|
1360
1416
|
value: padrino
|
|
1361
1417
|
- name: BUNDLE_GEMFILE
|
|
@@ -1366,14 +1422,14 @@ blocks:
|
|
|
1366
1422
|
value: latest
|
|
1367
1423
|
commands:
|
|
1368
1424
|
- "./support/bundler_wrapper exec rake test"
|
|
1369
|
-
- name: Ruby 3.0.
|
|
1425
|
+
- name: Ruby 3.0.4 for psych-3
|
|
1370
1426
|
env_vars:
|
|
1371
1427
|
- *2
|
|
1372
1428
|
- *3
|
|
1373
1429
|
- *4
|
|
1374
1430
|
- *5
|
|
1375
1431
|
- name: RUBY_VERSION
|
|
1376
|
-
value: 3.0.
|
|
1432
|
+
value: 3.0.4
|
|
1377
1433
|
- name: GEMSET
|
|
1378
1434
|
value: psych-3
|
|
1379
1435
|
- name: BUNDLE_GEMFILE
|
|
@@ -1384,14 +1440,14 @@ blocks:
|
|
|
1384
1440
|
value: latest
|
|
1385
1441
|
commands:
|
|
1386
1442
|
- "./support/bundler_wrapper exec rake test"
|
|
1387
|
-
- name: Ruby 3.0.
|
|
1443
|
+
- name: Ruby 3.0.4 for psych-4
|
|
1388
1444
|
env_vars:
|
|
1389
1445
|
- *2
|
|
1390
1446
|
- *3
|
|
1391
1447
|
- *4
|
|
1392
1448
|
- *5
|
|
1393
1449
|
- name: RUBY_VERSION
|
|
1394
|
-
value: 3.0.
|
|
1450
|
+
value: 3.0.4
|
|
1395
1451
|
- name: GEMSET
|
|
1396
1452
|
value: psych-4
|
|
1397
1453
|
- name: BUNDLE_GEMFILE
|
|
@@ -1402,14 +1458,14 @@ blocks:
|
|
|
1402
1458
|
value: latest
|
|
1403
1459
|
commands:
|
|
1404
1460
|
- "./support/bundler_wrapper exec rake test"
|
|
1405
|
-
- name: Ruby 3.0.
|
|
1461
|
+
- name: Ruby 3.0.4 for que
|
|
1406
1462
|
env_vars:
|
|
1407
1463
|
- *2
|
|
1408
1464
|
- *3
|
|
1409
1465
|
- *4
|
|
1410
1466
|
- *5
|
|
1411
1467
|
- name: RUBY_VERSION
|
|
1412
|
-
value: 3.0.
|
|
1468
|
+
value: 3.0.4
|
|
1413
1469
|
- name: GEMSET
|
|
1414
1470
|
value: que
|
|
1415
1471
|
- name: BUNDLE_GEMFILE
|
|
@@ -1420,14 +1476,14 @@ blocks:
|
|
|
1420
1476
|
value: latest
|
|
1421
1477
|
commands:
|
|
1422
1478
|
- "./support/bundler_wrapper exec rake test"
|
|
1423
|
-
- name: Ruby 3.0.
|
|
1479
|
+
- name: Ruby 3.0.4 for que_beta
|
|
1424
1480
|
env_vars:
|
|
1425
1481
|
- *2
|
|
1426
1482
|
- *3
|
|
1427
1483
|
- *4
|
|
1428
1484
|
- *5
|
|
1429
1485
|
- name: RUBY_VERSION
|
|
1430
|
-
value: 3.0.
|
|
1486
|
+
value: 3.0.4
|
|
1431
1487
|
- name: GEMSET
|
|
1432
1488
|
value: que_beta
|
|
1433
1489
|
- name: BUNDLE_GEMFILE
|
|
@@ -1438,14 +1494,14 @@ blocks:
|
|
|
1438
1494
|
value: latest
|
|
1439
1495
|
commands:
|
|
1440
1496
|
- "./support/bundler_wrapper exec rake test"
|
|
1441
|
-
- name: Ruby 3.0.
|
|
1497
|
+
- name: Ruby 3.0.4 for rails-6.0
|
|
1442
1498
|
env_vars:
|
|
1443
1499
|
- *2
|
|
1444
1500
|
- *3
|
|
1445
1501
|
- *4
|
|
1446
1502
|
- *5
|
|
1447
1503
|
- name: RUBY_VERSION
|
|
1448
|
-
value: 3.0.
|
|
1504
|
+
value: 3.0.4
|
|
1449
1505
|
- name: GEMSET
|
|
1450
1506
|
value: rails-6.0
|
|
1451
1507
|
- name: BUNDLE_GEMFILE
|
|
@@ -1456,14 +1512,14 @@ blocks:
|
|
|
1456
1512
|
value: latest
|
|
1457
1513
|
commands:
|
|
1458
1514
|
- "./support/bundler_wrapper exec rake test"
|
|
1459
|
-
- name: Ruby 3.0.
|
|
1515
|
+
- name: Ruby 3.0.4 for rails-6.1
|
|
1460
1516
|
env_vars:
|
|
1461
1517
|
- *2
|
|
1462
1518
|
- *3
|
|
1463
1519
|
- *4
|
|
1464
1520
|
- *5
|
|
1465
1521
|
- name: RUBY_VERSION
|
|
1466
|
-
value: 3.0.
|
|
1522
|
+
value: 3.0.4
|
|
1467
1523
|
- name: GEMSET
|
|
1468
1524
|
value: rails-6.1
|
|
1469
1525
|
- name: BUNDLE_GEMFILE
|
|
@@ -1474,14 +1530,14 @@ blocks:
|
|
|
1474
1530
|
value: latest
|
|
1475
1531
|
commands:
|
|
1476
1532
|
- "./support/bundler_wrapper exec rake test"
|
|
1477
|
-
- name: Ruby 3.0.
|
|
1533
|
+
- name: Ruby 3.0.4 for rails-7.0
|
|
1478
1534
|
env_vars:
|
|
1479
1535
|
- *2
|
|
1480
1536
|
- *3
|
|
1481
1537
|
- *4
|
|
1482
1538
|
- *5
|
|
1483
1539
|
- name: RUBY_VERSION
|
|
1484
|
-
value: 3.0.
|
|
1540
|
+
value: 3.0.4
|
|
1485
1541
|
- name: GEMSET
|
|
1486
1542
|
value: rails-7.0
|
|
1487
1543
|
- name: BUNDLE_GEMFILE
|
|
@@ -1492,14 +1548,14 @@ blocks:
|
|
|
1492
1548
|
value: latest
|
|
1493
1549
|
commands:
|
|
1494
1550
|
- "./support/bundler_wrapper exec rake test"
|
|
1495
|
-
- name: Ruby 3.0.
|
|
1551
|
+
- name: Ruby 3.0.4 for resque-2
|
|
1496
1552
|
env_vars:
|
|
1497
1553
|
- *2
|
|
1498
1554
|
- *3
|
|
1499
1555
|
- *4
|
|
1500
1556
|
- *5
|
|
1501
1557
|
- name: RUBY_VERSION
|
|
1502
|
-
value: 3.0.
|
|
1558
|
+
value: 3.0.4
|
|
1503
1559
|
- name: GEMSET
|
|
1504
1560
|
value: resque-2
|
|
1505
1561
|
- name: BUNDLE_GEMFILE
|
|
@@ -1510,14 +1566,14 @@ blocks:
|
|
|
1510
1566
|
value: latest
|
|
1511
1567
|
commands:
|
|
1512
1568
|
- "./support/bundler_wrapper exec rake test"
|
|
1513
|
-
- name: Ruby 3.0.
|
|
1569
|
+
- name: Ruby 3.0.4 for sequel
|
|
1514
1570
|
env_vars:
|
|
1515
1571
|
- *2
|
|
1516
1572
|
- *3
|
|
1517
1573
|
- *4
|
|
1518
1574
|
- *5
|
|
1519
1575
|
- name: RUBY_VERSION
|
|
1520
|
-
value: 3.0.
|
|
1576
|
+
value: 3.0.4
|
|
1521
1577
|
- name: GEMSET
|
|
1522
1578
|
value: sequel
|
|
1523
1579
|
- name: BUNDLE_GEMFILE
|
|
@@ -1528,14 +1584,14 @@ blocks:
|
|
|
1528
1584
|
value: latest
|
|
1529
1585
|
commands:
|
|
1530
1586
|
- "./support/bundler_wrapper exec rake test"
|
|
1531
|
-
- name: Ruby 3.0.
|
|
1587
|
+
- name: Ruby 3.0.4 for sinatra
|
|
1532
1588
|
env_vars:
|
|
1533
1589
|
- *2
|
|
1534
1590
|
- *3
|
|
1535
1591
|
- *4
|
|
1536
1592
|
- *5
|
|
1537
1593
|
- name: RUBY_VERSION
|
|
1538
|
-
value: 3.0.
|
|
1594
|
+
value: 3.0.4
|
|
1539
1595
|
- name: GEMSET
|
|
1540
1596
|
value: sinatra
|
|
1541
1597
|
- name: BUNDLE_GEMFILE
|
|
@@ -1546,14 +1602,14 @@ blocks:
|
|
|
1546
1602
|
value: latest
|
|
1547
1603
|
commands:
|
|
1548
1604
|
- "./support/bundler_wrapper exec rake test"
|
|
1549
|
-
- name: Ruby 3.0.
|
|
1605
|
+
- name: Ruby 3.0.4 for webmachine
|
|
1550
1606
|
env_vars:
|
|
1551
1607
|
- *2
|
|
1552
1608
|
- *3
|
|
1553
1609
|
- *4
|
|
1554
1610
|
- *5
|
|
1555
1611
|
- name: RUBY_VERSION
|
|
1556
|
-
value: 3.0.
|
|
1612
|
+
value: 3.0.4
|
|
1557
1613
|
- name: GEMSET
|
|
1558
1614
|
value: webmachine
|
|
1559
1615
|
- name: BUNDLE_GEMFILE
|
|
@@ -1564,28 +1620,30 @@ blocks:
|
|
|
1564
1620
|
value: latest
|
|
1565
1621
|
commands:
|
|
1566
1622
|
- "./support/bundler_wrapper exec rake test"
|
|
1567
|
-
- name: Ruby 3.1.
|
|
1623
|
+
- name: Ruby 3.1.2
|
|
1568
1624
|
dependencies:
|
|
1569
1625
|
- Validation
|
|
1570
1626
|
task:
|
|
1571
1627
|
prologue:
|
|
1572
1628
|
commands:
|
|
1573
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
1574
|
-
|
|
1629
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1630
|
+
appsignal.gemspec)
|
|
1631
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1632
|
+
appsignal.gemspec)
|
|
1575
1633
|
- "./support/install_deps"
|
|
1576
1634
|
- bundle config set clean 'true'
|
|
1577
1635
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
1578
1636
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
1579
1637
|
epilogue: *1
|
|
1580
1638
|
jobs:
|
|
1581
|
-
- name: Ruby 3.1.
|
|
1639
|
+
- name: Ruby 3.1.2 for no_dependencies
|
|
1582
1640
|
env_vars:
|
|
1583
1641
|
- *2
|
|
1584
1642
|
- *3
|
|
1585
1643
|
- *4
|
|
1586
1644
|
- *5
|
|
1587
1645
|
- name: RUBY_VERSION
|
|
1588
|
-
value: 3.1.
|
|
1646
|
+
value: 3.1.2
|
|
1589
1647
|
- name: GEMSET
|
|
1590
1648
|
value: no_dependencies
|
|
1591
1649
|
- name: BUNDLE_GEMFILE
|
|
@@ -1597,28 +1655,30 @@ blocks:
|
|
|
1597
1655
|
commands:
|
|
1598
1656
|
- "./support/bundler_wrapper exec rake test"
|
|
1599
1657
|
- "./support/bundler_wrapper exec rake test:failure"
|
|
1600
|
-
- name: Ruby 3.1.
|
|
1658
|
+
- name: Ruby 3.1.2 - Gems
|
|
1601
1659
|
dependencies:
|
|
1602
|
-
- Ruby 3.1.
|
|
1660
|
+
- Ruby 3.1.2
|
|
1603
1661
|
task:
|
|
1604
1662
|
prologue:
|
|
1605
1663
|
commands:
|
|
1606
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
1607
|
-
|
|
1664
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1665
|
+
appsignal.gemspec)
|
|
1666
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1667
|
+
appsignal.gemspec)
|
|
1608
1668
|
- "./support/install_deps"
|
|
1609
1669
|
- bundle config set clean 'true'
|
|
1610
1670
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
1611
1671
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
1612
1672
|
epilogue: *1
|
|
1613
1673
|
jobs:
|
|
1614
|
-
- name: Ruby 3.1.
|
|
1674
|
+
- name: Ruby 3.1.2 for capistrano2
|
|
1615
1675
|
env_vars:
|
|
1616
1676
|
- *2
|
|
1617
1677
|
- *3
|
|
1618
1678
|
- *4
|
|
1619
1679
|
- *5
|
|
1620
1680
|
- name: RUBY_VERSION
|
|
1621
|
-
value: 3.1.
|
|
1681
|
+
value: 3.1.2
|
|
1622
1682
|
- name: GEMSET
|
|
1623
1683
|
value: capistrano2
|
|
1624
1684
|
- name: BUNDLE_GEMFILE
|
|
@@ -1629,14 +1689,14 @@ blocks:
|
|
|
1629
1689
|
value: latest
|
|
1630
1690
|
commands:
|
|
1631
1691
|
- "./support/bundler_wrapper exec rake test"
|
|
1632
|
-
- name: Ruby 3.1.
|
|
1692
|
+
- name: Ruby 3.1.2 for capistrano3
|
|
1633
1693
|
env_vars:
|
|
1634
1694
|
- *2
|
|
1635
1695
|
- *3
|
|
1636
1696
|
- *4
|
|
1637
1697
|
- *5
|
|
1638
1698
|
- name: RUBY_VERSION
|
|
1639
|
-
value: 3.1.
|
|
1699
|
+
value: 3.1.2
|
|
1640
1700
|
- name: GEMSET
|
|
1641
1701
|
value: capistrano3
|
|
1642
1702
|
- name: BUNDLE_GEMFILE
|
|
@@ -1647,14 +1707,14 @@ blocks:
|
|
|
1647
1707
|
value: latest
|
|
1648
1708
|
commands:
|
|
1649
1709
|
- "./support/bundler_wrapper exec rake test"
|
|
1650
|
-
- name: Ruby 3.1.
|
|
1710
|
+
- name: Ruby 3.1.2 for grape
|
|
1651
1711
|
env_vars:
|
|
1652
1712
|
- *2
|
|
1653
1713
|
- *3
|
|
1654
1714
|
- *4
|
|
1655
1715
|
- *5
|
|
1656
1716
|
- name: RUBY_VERSION
|
|
1657
|
-
value: 3.1.
|
|
1717
|
+
value: 3.1.2
|
|
1658
1718
|
- name: GEMSET
|
|
1659
1719
|
value: grape
|
|
1660
1720
|
- name: BUNDLE_GEMFILE
|
|
@@ -1665,14 +1725,32 @@ blocks:
|
|
|
1665
1725
|
value: latest
|
|
1666
1726
|
commands:
|
|
1667
1727
|
- "./support/bundler_wrapper exec rake test"
|
|
1668
|
-
- name: Ruby 3.1.
|
|
1728
|
+
- name: Ruby 3.1.2 for hanami
|
|
1669
1729
|
env_vars:
|
|
1670
1730
|
- *2
|
|
1671
1731
|
- *3
|
|
1672
1732
|
- *4
|
|
1673
1733
|
- *5
|
|
1674
1734
|
- name: RUBY_VERSION
|
|
1675
|
-
value: 3.1.
|
|
1735
|
+
value: 3.1.2
|
|
1736
|
+
- name: GEMSET
|
|
1737
|
+
value: hanami
|
|
1738
|
+
- name: BUNDLE_GEMFILE
|
|
1739
|
+
value: gemfiles/hanami.gemfile
|
|
1740
|
+
- name: _RUBYGEMS_VERSION
|
|
1741
|
+
value: latest
|
|
1742
|
+
- name: _BUNDLER_VERSION
|
|
1743
|
+
value: latest
|
|
1744
|
+
commands:
|
|
1745
|
+
- "./support/bundler_wrapper exec rake test"
|
|
1746
|
+
- name: Ruby 3.1.2 for http5
|
|
1747
|
+
env_vars:
|
|
1748
|
+
- *2
|
|
1749
|
+
- *3
|
|
1750
|
+
- *4
|
|
1751
|
+
- *5
|
|
1752
|
+
- name: RUBY_VERSION
|
|
1753
|
+
value: 3.1.2
|
|
1676
1754
|
- name: GEMSET
|
|
1677
1755
|
value: http5
|
|
1678
1756
|
- name: BUNDLE_GEMFILE
|
|
@@ -1683,14 +1761,14 @@ blocks:
|
|
|
1683
1761
|
value: latest
|
|
1684
1762
|
commands:
|
|
1685
1763
|
- "./support/bundler_wrapper exec rake test"
|
|
1686
|
-
- name: Ruby 3.1.
|
|
1764
|
+
- name: Ruby 3.1.2 for padrino
|
|
1687
1765
|
env_vars:
|
|
1688
1766
|
- *2
|
|
1689
1767
|
- *3
|
|
1690
1768
|
- *4
|
|
1691
1769
|
- *5
|
|
1692
1770
|
- name: RUBY_VERSION
|
|
1693
|
-
value: 3.1.
|
|
1771
|
+
value: 3.1.2
|
|
1694
1772
|
- name: GEMSET
|
|
1695
1773
|
value: padrino
|
|
1696
1774
|
- name: BUNDLE_GEMFILE
|
|
@@ -1701,14 +1779,14 @@ blocks:
|
|
|
1701
1779
|
value: latest
|
|
1702
1780
|
commands:
|
|
1703
1781
|
- "./support/bundler_wrapper exec rake test"
|
|
1704
|
-
- name: Ruby 3.1.
|
|
1782
|
+
- name: Ruby 3.1.2 for psych-3
|
|
1705
1783
|
env_vars:
|
|
1706
1784
|
- *2
|
|
1707
1785
|
- *3
|
|
1708
1786
|
- *4
|
|
1709
1787
|
- *5
|
|
1710
1788
|
- name: RUBY_VERSION
|
|
1711
|
-
value: 3.1.
|
|
1789
|
+
value: 3.1.2
|
|
1712
1790
|
- name: GEMSET
|
|
1713
1791
|
value: psych-3
|
|
1714
1792
|
- name: BUNDLE_GEMFILE
|
|
@@ -1719,14 +1797,14 @@ blocks:
|
|
|
1719
1797
|
value: latest
|
|
1720
1798
|
commands:
|
|
1721
1799
|
- "./support/bundler_wrapper exec rake test"
|
|
1722
|
-
- name: Ruby 3.1.
|
|
1800
|
+
- name: Ruby 3.1.2 for psych-4
|
|
1723
1801
|
env_vars:
|
|
1724
1802
|
- *2
|
|
1725
1803
|
- *3
|
|
1726
1804
|
- *4
|
|
1727
1805
|
- *5
|
|
1728
1806
|
- name: RUBY_VERSION
|
|
1729
|
-
value: 3.1.
|
|
1807
|
+
value: 3.1.2
|
|
1730
1808
|
- name: GEMSET
|
|
1731
1809
|
value: psych-4
|
|
1732
1810
|
- name: BUNDLE_GEMFILE
|
|
@@ -1737,14 +1815,14 @@ blocks:
|
|
|
1737
1815
|
value: latest
|
|
1738
1816
|
commands:
|
|
1739
1817
|
- "./support/bundler_wrapper exec rake test"
|
|
1740
|
-
- name: Ruby 3.1.
|
|
1818
|
+
- name: Ruby 3.1.2 for que
|
|
1741
1819
|
env_vars:
|
|
1742
1820
|
- *2
|
|
1743
1821
|
- *3
|
|
1744
1822
|
- *4
|
|
1745
1823
|
- *5
|
|
1746
1824
|
- name: RUBY_VERSION
|
|
1747
|
-
value: 3.1.
|
|
1825
|
+
value: 3.1.2
|
|
1748
1826
|
- name: GEMSET
|
|
1749
1827
|
value: que
|
|
1750
1828
|
- name: BUNDLE_GEMFILE
|
|
@@ -1755,14 +1833,14 @@ blocks:
|
|
|
1755
1833
|
value: latest
|
|
1756
1834
|
commands:
|
|
1757
1835
|
- "./support/bundler_wrapper exec rake test"
|
|
1758
|
-
- name: Ruby 3.1.
|
|
1836
|
+
- name: Ruby 3.1.2 for que_beta
|
|
1759
1837
|
env_vars:
|
|
1760
1838
|
- *2
|
|
1761
1839
|
- *3
|
|
1762
1840
|
- *4
|
|
1763
1841
|
- *5
|
|
1764
1842
|
- name: RUBY_VERSION
|
|
1765
|
-
value: 3.1.
|
|
1843
|
+
value: 3.1.2
|
|
1766
1844
|
- name: GEMSET
|
|
1767
1845
|
value: que_beta
|
|
1768
1846
|
- name: BUNDLE_GEMFILE
|
|
@@ -1773,14 +1851,14 @@ blocks:
|
|
|
1773
1851
|
value: latest
|
|
1774
1852
|
commands:
|
|
1775
1853
|
- "./support/bundler_wrapper exec rake test"
|
|
1776
|
-
- name: Ruby 3.1.
|
|
1854
|
+
- name: Ruby 3.1.2 for rails-6.1
|
|
1777
1855
|
env_vars:
|
|
1778
1856
|
- *2
|
|
1779
1857
|
- *3
|
|
1780
1858
|
- *4
|
|
1781
1859
|
- *5
|
|
1782
1860
|
- name: RUBY_VERSION
|
|
1783
|
-
value: 3.1.
|
|
1861
|
+
value: 3.1.2
|
|
1784
1862
|
- name: GEMSET
|
|
1785
1863
|
value: rails-6.1
|
|
1786
1864
|
- name: BUNDLE_GEMFILE
|
|
@@ -1791,14 +1869,14 @@ blocks:
|
|
|
1791
1869
|
value: latest
|
|
1792
1870
|
commands:
|
|
1793
1871
|
- "./support/bundler_wrapper exec rake test"
|
|
1794
|
-
- name: Ruby 3.1.
|
|
1872
|
+
- name: Ruby 3.1.2 for rails-7.0
|
|
1795
1873
|
env_vars:
|
|
1796
1874
|
- *2
|
|
1797
1875
|
- *3
|
|
1798
1876
|
- *4
|
|
1799
1877
|
- *5
|
|
1800
1878
|
- name: RUBY_VERSION
|
|
1801
|
-
value: 3.1.
|
|
1879
|
+
value: 3.1.2
|
|
1802
1880
|
- name: GEMSET
|
|
1803
1881
|
value: rails-7.0
|
|
1804
1882
|
- name: BUNDLE_GEMFILE
|
|
@@ -1809,14 +1887,14 @@ blocks:
|
|
|
1809
1887
|
value: latest
|
|
1810
1888
|
commands:
|
|
1811
1889
|
- "./support/bundler_wrapper exec rake test"
|
|
1812
|
-
- name: Ruby 3.1.
|
|
1890
|
+
- name: Ruby 3.1.2 for resque-2
|
|
1813
1891
|
env_vars:
|
|
1814
1892
|
- *2
|
|
1815
1893
|
- *3
|
|
1816
1894
|
- *4
|
|
1817
1895
|
- *5
|
|
1818
1896
|
- name: RUBY_VERSION
|
|
1819
|
-
value: 3.1.
|
|
1897
|
+
value: 3.1.2
|
|
1820
1898
|
- name: GEMSET
|
|
1821
1899
|
value: resque-2
|
|
1822
1900
|
- name: BUNDLE_GEMFILE
|
|
@@ -1827,14 +1905,14 @@ blocks:
|
|
|
1827
1905
|
value: latest
|
|
1828
1906
|
commands:
|
|
1829
1907
|
- "./support/bundler_wrapper exec rake test"
|
|
1830
|
-
- name: Ruby 3.1.
|
|
1908
|
+
- name: Ruby 3.1.2 for sequel
|
|
1831
1909
|
env_vars:
|
|
1832
1910
|
- *2
|
|
1833
1911
|
- *3
|
|
1834
1912
|
- *4
|
|
1835
1913
|
- *5
|
|
1836
1914
|
- name: RUBY_VERSION
|
|
1837
|
-
value: 3.1.
|
|
1915
|
+
value: 3.1.2
|
|
1838
1916
|
- name: GEMSET
|
|
1839
1917
|
value: sequel
|
|
1840
1918
|
- name: BUNDLE_GEMFILE
|
|
@@ -1845,14 +1923,14 @@ blocks:
|
|
|
1845
1923
|
value: latest
|
|
1846
1924
|
commands:
|
|
1847
1925
|
- "./support/bundler_wrapper exec rake test"
|
|
1848
|
-
- name: Ruby 3.1.
|
|
1926
|
+
- name: Ruby 3.1.2 for sinatra
|
|
1849
1927
|
env_vars:
|
|
1850
1928
|
- *2
|
|
1851
1929
|
- *3
|
|
1852
1930
|
- *4
|
|
1853
1931
|
- *5
|
|
1854
1932
|
- name: RUBY_VERSION
|
|
1855
|
-
value: 3.1.
|
|
1933
|
+
value: 3.1.2
|
|
1856
1934
|
- name: GEMSET
|
|
1857
1935
|
value: sinatra
|
|
1858
1936
|
- name: BUNDLE_GEMFILE
|
|
@@ -1863,14 +1941,14 @@ blocks:
|
|
|
1863
1941
|
value: latest
|
|
1864
1942
|
commands:
|
|
1865
1943
|
- "./support/bundler_wrapper exec rake test"
|
|
1866
|
-
- name: Ruby 3.1.
|
|
1944
|
+
- name: Ruby 3.1.2 for webmachine
|
|
1867
1945
|
env_vars:
|
|
1868
1946
|
- *2
|
|
1869
1947
|
- *3
|
|
1870
1948
|
- *4
|
|
1871
1949
|
- *5
|
|
1872
1950
|
- name: RUBY_VERSION
|
|
1873
|
-
value: 3.1.
|
|
1951
|
+
value: 3.1.2
|
|
1874
1952
|
- name: GEMSET
|
|
1875
1953
|
value: webmachine
|
|
1876
1954
|
- name: BUNDLE_GEMFILE
|
|
@@ -1881,28 +1959,30 @@ blocks:
|
|
|
1881
1959
|
value: latest
|
|
1882
1960
|
commands:
|
|
1883
1961
|
- "./support/bundler_wrapper exec rake test"
|
|
1884
|
-
- name: Ruby 3.2.0-
|
|
1962
|
+
- name: Ruby 3.2.0-rc1
|
|
1885
1963
|
dependencies:
|
|
1886
1964
|
- Validation
|
|
1887
1965
|
task:
|
|
1888
1966
|
prologue:
|
|
1889
1967
|
commands:
|
|
1890
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
1891
|
-
|
|
1968
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1969
|
+
appsignal.gemspec)
|
|
1970
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
1971
|
+
appsignal.gemspec)
|
|
1892
1972
|
- "./support/install_deps"
|
|
1893
1973
|
- bundle config set clean 'true'
|
|
1894
1974
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
1895
1975
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
1896
1976
|
epilogue: *1
|
|
1897
1977
|
jobs:
|
|
1898
|
-
- name: Ruby 3.2.0-
|
|
1978
|
+
- name: Ruby 3.2.0-rc1 for no_dependencies
|
|
1899
1979
|
env_vars:
|
|
1900
1980
|
- *2
|
|
1901
1981
|
- *3
|
|
1902
1982
|
- *4
|
|
1903
1983
|
- *5
|
|
1904
1984
|
- name: RUBY_VERSION
|
|
1905
|
-
value: 3.2.0-
|
|
1985
|
+
value: 3.2.0-rc1
|
|
1906
1986
|
- name: GEMSET
|
|
1907
1987
|
value: no_dependencies
|
|
1908
1988
|
- name: BUNDLE_GEMFILE
|
|
@@ -1911,31 +1991,39 @@ blocks:
|
|
|
1911
1991
|
value: latest
|
|
1912
1992
|
- name: _BUNDLER_VERSION
|
|
1913
1993
|
value: latest
|
|
1994
|
+
- &6
|
|
1995
|
+
name: _LIBYAML
|
|
1996
|
+
value: '1'
|
|
1997
|
+
- &7
|
|
1998
|
+
name: RUBY_CFLAGS
|
|
1999
|
+
value: "-std=gnu99"
|
|
1914
2000
|
commands:
|
|
1915
2001
|
- "./support/bundler_wrapper exec rake test"
|
|
1916
2002
|
- "./support/bundler_wrapper exec rake test:failure"
|
|
1917
|
-
- name: Ruby 3.2.0-
|
|
2003
|
+
- name: Ruby 3.2.0-rc1 - Gems
|
|
1918
2004
|
dependencies:
|
|
1919
|
-
- Ruby 3.2.0-
|
|
2005
|
+
- Ruby 3.2.0-rc1
|
|
1920
2006
|
task:
|
|
1921
2007
|
prologue:
|
|
1922
2008
|
commands:
|
|
1923
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
1924
|
-
|
|
2009
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2010
|
+
appsignal.gemspec)
|
|
2011
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2012
|
+
appsignal.gemspec)
|
|
1925
2013
|
- "./support/install_deps"
|
|
1926
2014
|
- bundle config set clean 'true'
|
|
1927
2015
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
1928
2016
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
1929
2017
|
epilogue: *1
|
|
1930
2018
|
jobs:
|
|
1931
|
-
- name: Ruby 3.2.0-
|
|
2019
|
+
- name: Ruby 3.2.0-rc1 for capistrano2
|
|
1932
2020
|
env_vars:
|
|
1933
2021
|
- *2
|
|
1934
2022
|
- *3
|
|
1935
2023
|
- *4
|
|
1936
2024
|
- *5
|
|
1937
2025
|
- name: RUBY_VERSION
|
|
1938
|
-
value: 3.2.0-
|
|
2026
|
+
value: 3.2.0-rc1
|
|
1939
2027
|
- name: GEMSET
|
|
1940
2028
|
value: capistrano2
|
|
1941
2029
|
- name: BUNDLE_GEMFILE
|
|
@@ -1944,16 +2032,18 @@ blocks:
|
|
|
1944
2032
|
value: latest
|
|
1945
2033
|
- name: _BUNDLER_VERSION
|
|
1946
2034
|
value: latest
|
|
2035
|
+
- *6
|
|
2036
|
+
- *7
|
|
1947
2037
|
commands:
|
|
1948
2038
|
- "./support/bundler_wrapper exec rake test"
|
|
1949
|
-
- name: Ruby 3.2.0-
|
|
2039
|
+
- name: Ruby 3.2.0-rc1 for capistrano3
|
|
1950
2040
|
env_vars:
|
|
1951
2041
|
- *2
|
|
1952
2042
|
- *3
|
|
1953
2043
|
- *4
|
|
1954
2044
|
- *5
|
|
1955
2045
|
- name: RUBY_VERSION
|
|
1956
|
-
value: 3.2.0-
|
|
2046
|
+
value: 3.2.0-rc1
|
|
1957
2047
|
- name: GEMSET
|
|
1958
2048
|
value: capistrano3
|
|
1959
2049
|
- name: BUNDLE_GEMFILE
|
|
@@ -1962,16 +2052,18 @@ blocks:
|
|
|
1962
2052
|
value: latest
|
|
1963
2053
|
- name: _BUNDLER_VERSION
|
|
1964
2054
|
value: latest
|
|
2055
|
+
- *6
|
|
2056
|
+
- *7
|
|
1965
2057
|
commands:
|
|
1966
2058
|
- "./support/bundler_wrapper exec rake test"
|
|
1967
|
-
- name: Ruby 3.2.0-
|
|
2059
|
+
- name: Ruby 3.2.0-rc1 for grape
|
|
1968
2060
|
env_vars:
|
|
1969
2061
|
- *2
|
|
1970
2062
|
- *3
|
|
1971
2063
|
- *4
|
|
1972
2064
|
- *5
|
|
1973
2065
|
- name: RUBY_VERSION
|
|
1974
|
-
value: 3.2.0-
|
|
2066
|
+
value: 3.2.0-rc1
|
|
1975
2067
|
- name: GEMSET
|
|
1976
2068
|
value: grape
|
|
1977
2069
|
- name: BUNDLE_GEMFILE
|
|
@@ -1980,16 +2072,38 @@ blocks:
|
|
|
1980
2072
|
value: latest
|
|
1981
2073
|
- name: _BUNDLER_VERSION
|
|
1982
2074
|
value: latest
|
|
2075
|
+
- *6
|
|
2076
|
+
- *7
|
|
1983
2077
|
commands:
|
|
1984
2078
|
- "./support/bundler_wrapper exec rake test"
|
|
1985
|
-
- name: Ruby 3.2.0-
|
|
2079
|
+
- name: Ruby 3.2.0-rc1 for hanami
|
|
1986
2080
|
env_vars:
|
|
1987
2081
|
- *2
|
|
1988
2082
|
- *3
|
|
1989
2083
|
- *4
|
|
1990
2084
|
- *5
|
|
1991
2085
|
- name: RUBY_VERSION
|
|
1992
|
-
value: 3.2.0-
|
|
2086
|
+
value: 3.2.0-rc1
|
|
2087
|
+
- name: GEMSET
|
|
2088
|
+
value: hanami
|
|
2089
|
+
- name: BUNDLE_GEMFILE
|
|
2090
|
+
value: gemfiles/hanami.gemfile
|
|
2091
|
+
- name: _RUBYGEMS_VERSION
|
|
2092
|
+
value: latest
|
|
2093
|
+
- name: _BUNDLER_VERSION
|
|
2094
|
+
value: latest
|
|
2095
|
+
- *6
|
|
2096
|
+
- *7
|
|
2097
|
+
commands:
|
|
2098
|
+
- "./support/bundler_wrapper exec rake test"
|
|
2099
|
+
- name: Ruby 3.2.0-rc1 for http5
|
|
2100
|
+
env_vars:
|
|
2101
|
+
- *2
|
|
2102
|
+
- *3
|
|
2103
|
+
- *4
|
|
2104
|
+
- *5
|
|
2105
|
+
- name: RUBY_VERSION
|
|
2106
|
+
value: 3.2.0-rc1
|
|
1993
2107
|
- name: GEMSET
|
|
1994
2108
|
value: http5
|
|
1995
2109
|
- name: BUNDLE_GEMFILE
|
|
@@ -1998,16 +2112,18 @@ blocks:
|
|
|
1998
2112
|
value: latest
|
|
1999
2113
|
- name: _BUNDLER_VERSION
|
|
2000
2114
|
value: latest
|
|
2115
|
+
- *6
|
|
2116
|
+
- *7
|
|
2001
2117
|
commands:
|
|
2002
2118
|
- "./support/bundler_wrapper exec rake test"
|
|
2003
|
-
- name: Ruby 3.2.0-
|
|
2119
|
+
- name: Ruby 3.2.0-rc1 for padrino
|
|
2004
2120
|
env_vars:
|
|
2005
2121
|
- *2
|
|
2006
2122
|
- *3
|
|
2007
2123
|
- *4
|
|
2008
2124
|
- *5
|
|
2009
2125
|
- name: RUBY_VERSION
|
|
2010
|
-
value: 3.2.0-
|
|
2126
|
+
value: 3.2.0-rc1
|
|
2011
2127
|
- name: GEMSET
|
|
2012
2128
|
value: padrino
|
|
2013
2129
|
- name: BUNDLE_GEMFILE
|
|
@@ -2016,16 +2132,18 @@ blocks:
|
|
|
2016
2132
|
value: latest
|
|
2017
2133
|
- name: _BUNDLER_VERSION
|
|
2018
2134
|
value: latest
|
|
2135
|
+
- *6
|
|
2136
|
+
- *7
|
|
2019
2137
|
commands:
|
|
2020
2138
|
- "./support/bundler_wrapper exec rake test"
|
|
2021
|
-
- name: Ruby 3.2.0-
|
|
2139
|
+
- name: Ruby 3.2.0-rc1 for psych-3
|
|
2022
2140
|
env_vars:
|
|
2023
2141
|
- *2
|
|
2024
2142
|
- *3
|
|
2025
2143
|
- *4
|
|
2026
2144
|
- *5
|
|
2027
2145
|
- name: RUBY_VERSION
|
|
2028
|
-
value: 3.2.0-
|
|
2146
|
+
value: 3.2.0-rc1
|
|
2029
2147
|
- name: GEMSET
|
|
2030
2148
|
value: psych-3
|
|
2031
2149
|
- name: BUNDLE_GEMFILE
|
|
@@ -2034,16 +2152,18 @@ blocks:
|
|
|
2034
2152
|
value: latest
|
|
2035
2153
|
- name: _BUNDLER_VERSION
|
|
2036
2154
|
value: latest
|
|
2155
|
+
- *6
|
|
2156
|
+
- *7
|
|
2037
2157
|
commands:
|
|
2038
2158
|
- "./support/bundler_wrapper exec rake test"
|
|
2039
|
-
- name: Ruby 3.2.0-
|
|
2159
|
+
- name: Ruby 3.2.0-rc1 for psych-4
|
|
2040
2160
|
env_vars:
|
|
2041
2161
|
- *2
|
|
2042
2162
|
- *3
|
|
2043
2163
|
- *4
|
|
2044
2164
|
- *5
|
|
2045
2165
|
- name: RUBY_VERSION
|
|
2046
|
-
value: 3.2.0-
|
|
2166
|
+
value: 3.2.0-rc1
|
|
2047
2167
|
- name: GEMSET
|
|
2048
2168
|
value: psych-4
|
|
2049
2169
|
- name: BUNDLE_GEMFILE
|
|
@@ -2052,16 +2172,18 @@ blocks:
|
|
|
2052
2172
|
value: latest
|
|
2053
2173
|
- name: _BUNDLER_VERSION
|
|
2054
2174
|
value: latest
|
|
2175
|
+
- *6
|
|
2176
|
+
- *7
|
|
2055
2177
|
commands:
|
|
2056
2178
|
- "./support/bundler_wrapper exec rake test"
|
|
2057
|
-
- name: Ruby 3.2.0-
|
|
2179
|
+
- name: Ruby 3.2.0-rc1 for que
|
|
2058
2180
|
env_vars:
|
|
2059
2181
|
- *2
|
|
2060
2182
|
- *3
|
|
2061
2183
|
- *4
|
|
2062
2184
|
- *5
|
|
2063
2185
|
- name: RUBY_VERSION
|
|
2064
|
-
value: 3.2.0-
|
|
2186
|
+
value: 3.2.0-rc1
|
|
2065
2187
|
- name: GEMSET
|
|
2066
2188
|
value: que
|
|
2067
2189
|
- name: BUNDLE_GEMFILE
|
|
@@ -2070,16 +2192,18 @@ blocks:
|
|
|
2070
2192
|
value: latest
|
|
2071
2193
|
- name: _BUNDLER_VERSION
|
|
2072
2194
|
value: latest
|
|
2195
|
+
- *6
|
|
2196
|
+
- *7
|
|
2073
2197
|
commands:
|
|
2074
2198
|
- "./support/bundler_wrapper exec rake test"
|
|
2075
|
-
- name: Ruby 3.2.0-
|
|
2199
|
+
- name: Ruby 3.2.0-rc1 for que_beta
|
|
2076
2200
|
env_vars:
|
|
2077
2201
|
- *2
|
|
2078
2202
|
- *3
|
|
2079
2203
|
- *4
|
|
2080
2204
|
- *5
|
|
2081
2205
|
- name: RUBY_VERSION
|
|
2082
|
-
value: 3.2.0-
|
|
2206
|
+
value: 3.2.0-rc1
|
|
2083
2207
|
- name: GEMSET
|
|
2084
2208
|
value: que_beta
|
|
2085
2209
|
- name: BUNDLE_GEMFILE
|
|
@@ -2088,16 +2212,18 @@ blocks:
|
|
|
2088
2212
|
value: latest
|
|
2089
2213
|
- name: _BUNDLER_VERSION
|
|
2090
2214
|
value: latest
|
|
2215
|
+
- *6
|
|
2216
|
+
- *7
|
|
2091
2217
|
commands:
|
|
2092
2218
|
- "./support/bundler_wrapper exec rake test"
|
|
2093
|
-
- name: Ruby 3.2.0-
|
|
2219
|
+
- name: Ruby 3.2.0-rc1 for rails-6.1
|
|
2094
2220
|
env_vars:
|
|
2095
2221
|
- *2
|
|
2096
2222
|
- *3
|
|
2097
2223
|
- *4
|
|
2098
2224
|
- *5
|
|
2099
2225
|
- name: RUBY_VERSION
|
|
2100
|
-
value: 3.2.0-
|
|
2226
|
+
value: 3.2.0-rc1
|
|
2101
2227
|
- name: GEMSET
|
|
2102
2228
|
value: rails-6.1
|
|
2103
2229
|
- name: BUNDLE_GEMFILE
|
|
@@ -2106,16 +2232,18 @@ blocks:
|
|
|
2106
2232
|
value: latest
|
|
2107
2233
|
- name: _BUNDLER_VERSION
|
|
2108
2234
|
value: latest
|
|
2235
|
+
- *6
|
|
2236
|
+
- *7
|
|
2109
2237
|
commands:
|
|
2110
2238
|
- "./support/bundler_wrapper exec rake test"
|
|
2111
|
-
- name: Ruby 3.2.0-
|
|
2239
|
+
- name: Ruby 3.2.0-rc1 for rails-7.0
|
|
2112
2240
|
env_vars:
|
|
2113
2241
|
- *2
|
|
2114
2242
|
- *3
|
|
2115
2243
|
- *4
|
|
2116
2244
|
- *5
|
|
2117
2245
|
- name: RUBY_VERSION
|
|
2118
|
-
value: 3.2.0-
|
|
2246
|
+
value: 3.2.0-rc1
|
|
2119
2247
|
- name: GEMSET
|
|
2120
2248
|
value: rails-7.0
|
|
2121
2249
|
- name: BUNDLE_GEMFILE
|
|
@@ -2124,16 +2252,18 @@ blocks:
|
|
|
2124
2252
|
value: latest
|
|
2125
2253
|
- name: _BUNDLER_VERSION
|
|
2126
2254
|
value: latest
|
|
2255
|
+
- *6
|
|
2256
|
+
- *7
|
|
2127
2257
|
commands:
|
|
2128
2258
|
- "./support/bundler_wrapper exec rake test"
|
|
2129
|
-
- name: Ruby 3.2.0-
|
|
2259
|
+
- name: Ruby 3.2.0-rc1 for resque-2
|
|
2130
2260
|
env_vars:
|
|
2131
2261
|
- *2
|
|
2132
2262
|
- *3
|
|
2133
2263
|
- *4
|
|
2134
2264
|
- *5
|
|
2135
2265
|
- name: RUBY_VERSION
|
|
2136
|
-
value: 3.2.0-
|
|
2266
|
+
value: 3.2.0-rc1
|
|
2137
2267
|
- name: GEMSET
|
|
2138
2268
|
value: resque-2
|
|
2139
2269
|
- name: BUNDLE_GEMFILE
|
|
@@ -2142,16 +2272,18 @@ blocks:
|
|
|
2142
2272
|
value: latest
|
|
2143
2273
|
- name: _BUNDLER_VERSION
|
|
2144
2274
|
value: latest
|
|
2275
|
+
- *6
|
|
2276
|
+
- *7
|
|
2145
2277
|
commands:
|
|
2146
2278
|
- "./support/bundler_wrapper exec rake test"
|
|
2147
|
-
- name: Ruby 3.2.0-
|
|
2279
|
+
- name: Ruby 3.2.0-rc1 for sequel
|
|
2148
2280
|
env_vars:
|
|
2149
2281
|
- *2
|
|
2150
2282
|
- *3
|
|
2151
2283
|
- *4
|
|
2152
2284
|
- *5
|
|
2153
2285
|
- name: RUBY_VERSION
|
|
2154
|
-
value: 3.2.0-
|
|
2286
|
+
value: 3.2.0-rc1
|
|
2155
2287
|
- name: GEMSET
|
|
2156
2288
|
value: sequel
|
|
2157
2289
|
- name: BUNDLE_GEMFILE
|
|
@@ -2160,16 +2292,18 @@ blocks:
|
|
|
2160
2292
|
value: latest
|
|
2161
2293
|
- name: _BUNDLER_VERSION
|
|
2162
2294
|
value: latest
|
|
2295
|
+
- *6
|
|
2296
|
+
- *7
|
|
2163
2297
|
commands:
|
|
2164
2298
|
- "./support/bundler_wrapper exec rake test"
|
|
2165
|
-
- name: Ruby 3.2.0-
|
|
2299
|
+
- name: Ruby 3.2.0-rc1 for sinatra
|
|
2166
2300
|
env_vars:
|
|
2167
2301
|
- *2
|
|
2168
2302
|
- *3
|
|
2169
2303
|
- *4
|
|
2170
2304
|
- *5
|
|
2171
2305
|
- name: RUBY_VERSION
|
|
2172
|
-
value: 3.2.0-
|
|
2306
|
+
value: 3.2.0-rc1
|
|
2173
2307
|
- name: GEMSET
|
|
2174
2308
|
value: sinatra
|
|
2175
2309
|
- name: BUNDLE_GEMFILE
|
|
@@ -2178,16 +2312,18 @@ blocks:
|
|
|
2178
2312
|
value: latest
|
|
2179
2313
|
- name: _BUNDLER_VERSION
|
|
2180
2314
|
value: latest
|
|
2315
|
+
- *6
|
|
2316
|
+
- *7
|
|
2181
2317
|
commands:
|
|
2182
2318
|
- "./support/bundler_wrapper exec rake test"
|
|
2183
|
-
- name: Ruby 3.2.0-
|
|
2319
|
+
- name: Ruby 3.2.0-rc1 for webmachine
|
|
2184
2320
|
env_vars:
|
|
2185
2321
|
- *2
|
|
2186
2322
|
- *3
|
|
2187
2323
|
- *4
|
|
2188
2324
|
- *5
|
|
2189
2325
|
- name: RUBY_VERSION
|
|
2190
|
-
value: 3.2.0-
|
|
2326
|
+
value: 3.2.0-rc1
|
|
2191
2327
|
- name: GEMSET
|
|
2192
2328
|
value: webmachine
|
|
2193
2329
|
- name: BUNDLE_GEMFILE
|
|
@@ -2196,30 +2332,34 @@ blocks:
|
|
|
2196
2332
|
value: latest
|
|
2197
2333
|
- name: _BUNDLER_VERSION
|
|
2198
2334
|
value: latest
|
|
2335
|
+
- *6
|
|
2336
|
+
- *7
|
|
2199
2337
|
commands:
|
|
2200
2338
|
- "./support/bundler_wrapper exec rake test"
|
|
2201
|
-
- name: Ruby jruby-9.
|
|
2339
|
+
- name: Ruby jruby-9.3.9.0
|
|
2202
2340
|
dependencies:
|
|
2203
2341
|
- Validation
|
|
2204
2342
|
task:
|
|
2205
2343
|
prologue:
|
|
2206
2344
|
commands:
|
|
2207
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
2208
|
-
|
|
2345
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2346
|
+
appsignal.gemspec)
|
|
2347
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2348
|
+
appsignal.gemspec)
|
|
2209
2349
|
- "./support/install_deps"
|
|
2210
2350
|
- bundle config set clean 'true'
|
|
2211
2351
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
2212
2352
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
2213
2353
|
epilogue: *1
|
|
2214
2354
|
jobs:
|
|
2215
|
-
- name: Ruby jruby-9.
|
|
2355
|
+
- name: Ruby jruby-9.3.9.0 for no_dependencies
|
|
2216
2356
|
env_vars:
|
|
2217
2357
|
- *2
|
|
2218
2358
|
- *3
|
|
2219
2359
|
- *4
|
|
2220
2360
|
- *5
|
|
2221
2361
|
- name: RUBY_VERSION
|
|
2222
|
-
value: jruby-9.
|
|
2362
|
+
value: jruby-9.3.9.0
|
|
2223
2363
|
- name: GEMSET
|
|
2224
2364
|
value: no_dependencies
|
|
2225
2365
|
- name: BUNDLE_GEMFILE
|
|
@@ -2228,34 +2368,33 @@ blocks:
|
|
|
2228
2368
|
value: latest
|
|
2229
2369
|
- name: _BUNDLER_VERSION
|
|
2230
2370
|
value: latest
|
|
2231
|
-
- &6
|
|
2232
|
-
name: _C_VERSION
|
|
2233
|
-
value: '8'
|
|
2234
2371
|
commands:
|
|
2235
2372
|
- "./support/bundler_wrapper exec rake test"
|
|
2236
2373
|
- "./support/bundler_wrapper exec rake test:failure"
|
|
2237
|
-
- name: Ruby jruby-9.
|
|
2374
|
+
- name: Ruby jruby-9.3.9.0 - Gems
|
|
2238
2375
|
dependencies:
|
|
2239
|
-
- Ruby jruby-9.
|
|
2376
|
+
- Ruby jruby-9.3.9.0
|
|
2240
2377
|
task:
|
|
2241
2378
|
prologue:
|
|
2242
2379
|
commands:
|
|
2243
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
2244
|
-
|
|
2380
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2381
|
+
appsignal.gemspec)
|
|
2382
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2383
|
+
appsignal.gemspec)
|
|
2245
2384
|
- "./support/install_deps"
|
|
2246
2385
|
- bundle config set clean 'true'
|
|
2247
2386
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
2248
2387
|
- "./support/bundler_wrapper exec rake extension:install"
|
|
2249
2388
|
epilogue: *1
|
|
2250
2389
|
jobs:
|
|
2251
|
-
- name: Ruby jruby-9.
|
|
2390
|
+
- name: Ruby jruby-9.3.9.0 for rails-5.2
|
|
2252
2391
|
env_vars:
|
|
2253
2392
|
- *2
|
|
2254
2393
|
- *3
|
|
2255
2394
|
- *4
|
|
2256
2395
|
- *5
|
|
2257
2396
|
- name: RUBY_VERSION
|
|
2258
|
-
value: jruby-9.
|
|
2397
|
+
value: jruby-9.3.9.0
|
|
2259
2398
|
- name: GEMSET
|
|
2260
2399
|
value: rails-5.2
|
|
2261
2400
|
- name: BUNDLE_GEMFILE
|
|
@@ -2264,106 +2403,107 @@ blocks:
|
|
|
2264
2403
|
value: latest
|
|
2265
2404
|
- name: _BUNDLER_VERSION
|
|
2266
2405
|
value: latest
|
|
2267
|
-
- *6
|
|
2268
2406
|
commands:
|
|
2269
2407
|
- "./support/bundler_wrapper exec rake test"
|
|
2270
|
-
|
|
2408
|
+
- name: Ruby jruby-9.4.0.0
|
|
2409
|
+
dependencies:
|
|
2410
|
+
- Validation
|
|
2411
|
+
task:
|
|
2412
|
+
prologue:
|
|
2413
|
+
commands:
|
|
2414
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2415
|
+
appsignal.gemspec)
|
|
2416
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2417
|
+
appsignal.gemspec)
|
|
2418
|
+
- "./support/install_deps"
|
|
2419
|
+
- bundle config set clean 'true'
|
|
2420
|
+
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
2421
|
+
- "./support/bundler_wrapper exec rake extension:install"
|
|
2422
|
+
epilogue: *1
|
|
2423
|
+
jobs:
|
|
2424
|
+
- name: Ruby jruby-9.4.0.0 for no_dependencies
|
|
2271
2425
|
env_vars:
|
|
2272
2426
|
- *2
|
|
2273
2427
|
- *3
|
|
2274
2428
|
- *4
|
|
2275
2429
|
- *5
|
|
2276
2430
|
- name: RUBY_VERSION
|
|
2277
|
-
value: jruby-9.
|
|
2431
|
+
value: jruby-9.4.0.0
|
|
2278
2432
|
- name: GEMSET
|
|
2279
|
-
value:
|
|
2433
|
+
value: no_dependencies
|
|
2280
2434
|
- name: BUNDLE_GEMFILE
|
|
2281
|
-
value: gemfiles/
|
|
2435
|
+
value: gemfiles/no_dependencies.gemfile
|
|
2282
2436
|
- name: _RUBYGEMS_VERSION
|
|
2283
2437
|
value: latest
|
|
2284
2438
|
- name: _BUNDLER_VERSION
|
|
2285
2439
|
value: latest
|
|
2286
|
-
- *6
|
|
2287
2440
|
commands:
|
|
2288
2441
|
- "./support/bundler_wrapper exec rake test"
|
|
2289
|
-
|
|
2442
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
|
2443
|
+
- name: Ruby jruby-9.4.0.0 - Gems
|
|
2444
|
+
dependencies:
|
|
2445
|
+
- Ruby jruby-9.4.0.0
|
|
2446
|
+
task:
|
|
2447
|
+
prologue:
|
|
2448
|
+
commands:
|
|
2449
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2450
|
+
appsignal.gemspec)
|
|
2451
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
|
2452
|
+
appsignal.gemspec)
|
|
2453
|
+
- "./support/install_deps"
|
|
2454
|
+
- bundle config set clean 'true'
|
|
2455
|
+
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
2456
|
+
- "./support/bundler_wrapper exec rake extension:install"
|
|
2457
|
+
epilogue: *1
|
|
2458
|
+
jobs:
|
|
2459
|
+
- name: Ruby jruby-9.4.0.0 for rails-6.0
|
|
2290
2460
|
env_vars:
|
|
2291
2461
|
- *2
|
|
2292
2462
|
- *3
|
|
2293
2463
|
- *4
|
|
2294
2464
|
- *5
|
|
2295
2465
|
- name: RUBY_VERSION
|
|
2296
|
-
value: jruby-9.
|
|
2466
|
+
value: jruby-9.4.0.0
|
|
2297
2467
|
- name: GEMSET
|
|
2298
|
-
value: rails-6.
|
|
2468
|
+
value: rails-6.0
|
|
2299
2469
|
- name: BUNDLE_GEMFILE
|
|
2300
|
-
value: gemfiles/rails-6.
|
|
2470
|
+
value: gemfiles/rails-6.0.gemfile
|
|
2301
2471
|
- name: _RUBYGEMS_VERSION
|
|
2302
2472
|
value: latest
|
|
2303
2473
|
- name: _BUNDLER_VERSION
|
|
2304
2474
|
value: latest
|
|
2305
|
-
- *6
|
|
2306
2475
|
commands:
|
|
2307
2476
|
- "./support/bundler_wrapper exec rake test"
|
|
2308
|
-
- name: Ruby jruby-9.
|
|
2309
|
-
dependencies:
|
|
2310
|
-
- Validation
|
|
2311
|
-
task:
|
|
2312
|
-
prologue:
|
|
2313
|
-
commands:
|
|
2314
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
2315
|
-
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
|
|
2316
|
-
- "./support/install_deps"
|
|
2317
|
-
- bundle config set clean 'true'
|
|
2318
|
-
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
2319
|
-
- "./support/bundler_wrapper exec rake extension:install"
|
|
2320
|
-
epilogue: *1
|
|
2321
|
-
jobs:
|
|
2322
|
-
- name: Ruby jruby-9.3.6.0 for no_dependencies
|
|
2477
|
+
- name: Ruby jruby-9.4.0.0 for rails-6.1
|
|
2323
2478
|
env_vars:
|
|
2324
2479
|
- *2
|
|
2325
2480
|
- *3
|
|
2326
2481
|
- *4
|
|
2327
2482
|
- *5
|
|
2328
2483
|
- name: RUBY_VERSION
|
|
2329
|
-
value: jruby-9.
|
|
2484
|
+
value: jruby-9.4.0.0
|
|
2330
2485
|
- name: GEMSET
|
|
2331
|
-
value:
|
|
2486
|
+
value: rails-6.1
|
|
2332
2487
|
- name: BUNDLE_GEMFILE
|
|
2333
|
-
value: gemfiles/
|
|
2488
|
+
value: gemfiles/rails-6.1.gemfile
|
|
2334
2489
|
- name: _RUBYGEMS_VERSION
|
|
2335
2490
|
value: latest
|
|
2336
2491
|
- name: _BUNDLER_VERSION
|
|
2337
2492
|
value: latest
|
|
2338
2493
|
commands:
|
|
2339
2494
|
- "./support/bundler_wrapper exec rake test"
|
|
2340
|
-
|
|
2341
|
-
- name: Ruby jruby-9.3.6.0 - Gems
|
|
2342
|
-
dependencies:
|
|
2343
|
-
- Ruby jruby-9.3.6.0
|
|
2344
|
-
task:
|
|
2345
|
-
prologue:
|
|
2346
|
-
commands:
|
|
2347
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
|
2348
|
-
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
|
|
2349
|
-
- "./support/install_deps"
|
|
2350
|
-
- bundle config set clean 'true'
|
|
2351
|
-
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
|
2352
|
-
- "./support/bundler_wrapper exec rake extension:install"
|
|
2353
|
-
epilogue: *1
|
|
2354
|
-
jobs:
|
|
2355
|
-
- name: Ruby jruby-9.3.6.0 for rails-6.1
|
|
2495
|
+
- name: Ruby jruby-9.4.0.0 for rails-7.0
|
|
2356
2496
|
env_vars:
|
|
2357
2497
|
- *2
|
|
2358
2498
|
- *3
|
|
2359
2499
|
- *4
|
|
2360
2500
|
- *5
|
|
2361
2501
|
- name: RUBY_VERSION
|
|
2362
|
-
value: jruby-9.
|
|
2502
|
+
value: jruby-9.4.0.0
|
|
2363
2503
|
- name: GEMSET
|
|
2364
|
-
value: rails-
|
|
2504
|
+
value: rails-7.0
|
|
2365
2505
|
- name: BUNDLE_GEMFILE
|
|
2366
|
-
value: gemfiles/rails-
|
|
2506
|
+
value: gemfiles/rails-7.0.gemfile
|
|
2367
2507
|
- name: _RUBYGEMS_VERSION
|
|
2368
2508
|
value: latest
|
|
2369
2509
|
- name: _BUNDLER_VERSION
|