appsignal 3.2.1-java → 3.2.2-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.semaphore/semaphore.yml +330 -264
- data/CHANGELOG.md +7 -0
- data/build_matrix.yml +52 -46
- 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/logger_spec.rb +28 -0
- data/spec/lib/appsignal/probes/mri_spec.rb +8 -3
- data/spec/support/helpers/dependency_helper.rb +4 -0
- metadata +3 -3
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,14 @@ 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 http5
|
1334
1372
|
env_vars:
|
1335
1373
|
- *2
|
1336
1374
|
- *3
|
1337
1375
|
- *4
|
1338
1376
|
- *5
|
1339
1377
|
- name: RUBY_VERSION
|
1340
|
-
value: 3.0.
|
1378
|
+
value: 3.0.4
|
1341
1379
|
- name: GEMSET
|
1342
1380
|
value: http5
|
1343
1381
|
- name: BUNDLE_GEMFILE
|
@@ -1348,14 +1386,14 @@ blocks:
|
|
1348
1386
|
value: latest
|
1349
1387
|
commands:
|
1350
1388
|
- "./support/bundler_wrapper exec rake test"
|
1351
|
-
- name: Ruby 3.0.
|
1389
|
+
- name: Ruby 3.0.4 for padrino
|
1352
1390
|
env_vars:
|
1353
1391
|
- *2
|
1354
1392
|
- *3
|
1355
1393
|
- *4
|
1356
1394
|
- *5
|
1357
1395
|
- name: RUBY_VERSION
|
1358
|
-
value: 3.0.
|
1396
|
+
value: 3.0.4
|
1359
1397
|
- name: GEMSET
|
1360
1398
|
value: padrino
|
1361
1399
|
- name: BUNDLE_GEMFILE
|
@@ -1366,14 +1404,14 @@ blocks:
|
|
1366
1404
|
value: latest
|
1367
1405
|
commands:
|
1368
1406
|
- "./support/bundler_wrapper exec rake test"
|
1369
|
-
- name: Ruby 3.0.
|
1407
|
+
- name: Ruby 3.0.4 for psych-3
|
1370
1408
|
env_vars:
|
1371
1409
|
- *2
|
1372
1410
|
- *3
|
1373
1411
|
- *4
|
1374
1412
|
- *5
|
1375
1413
|
- name: RUBY_VERSION
|
1376
|
-
value: 3.0.
|
1414
|
+
value: 3.0.4
|
1377
1415
|
- name: GEMSET
|
1378
1416
|
value: psych-3
|
1379
1417
|
- name: BUNDLE_GEMFILE
|
@@ -1384,14 +1422,14 @@ blocks:
|
|
1384
1422
|
value: latest
|
1385
1423
|
commands:
|
1386
1424
|
- "./support/bundler_wrapper exec rake test"
|
1387
|
-
- name: Ruby 3.0.
|
1425
|
+
- name: Ruby 3.0.4 for psych-4
|
1388
1426
|
env_vars:
|
1389
1427
|
- *2
|
1390
1428
|
- *3
|
1391
1429
|
- *4
|
1392
1430
|
- *5
|
1393
1431
|
- name: RUBY_VERSION
|
1394
|
-
value: 3.0.
|
1432
|
+
value: 3.0.4
|
1395
1433
|
- name: GEMSET
|
1396
1434
|
value: psych-4
|
1397
1435
|
- name: BUNDLE_GEMFILE
|
@@ -1402,14 +1440,14 @@ blocks:
|
|
1402
1440
|
value: latest
|
1403
1441
|
commands:
|
1404
1442
|
- "./support/bundler_wrapper exec rake test"
|
1405
|
-
- name: Ruby 3.0.
|
1443
|
+
- name: Ruby 3.0.4 for que
|
1406
1444
|
env_vars:
|
1407
1445
|
- *2
|
1408
1446
|
- *3
|
1409
1447
|
- *4
|
1410
1448
|
- *5
|
1411
1449
|
- name: RUBY_VERSION
|
1412
|
-
value: 3.0.
|
1450
|
+
value: 3.0.4
|
1413
1451
|
- name: GEMSET
|
1414
1452
|
value: que
|
1415
1453
|
- name: BUNDLE_GEMFILE
|
@@ -1420,14 +1458,14 @@ blocks:
|
|
1420
1458
|
value: latest
|
1421
1459
|
commands:
|
1422
1460
|
- "./support/bundler_wrapper exec rake test"
|
1423
|
-
- name: Ruby 3.0.
|
1461
|
+
- name: Ruby 3.0.4 for que_beta
|
1424
1462
|
env_vars:
|
1425
1463
|
- *2
|
1426
1464
|
- *3
|
1427
1465
|
- *4
|
1428
1466
|
- *5
|
1429
1467
|
- name: RUBY_VERSION
|
1430
|
-
value: 3.0.
|
1468
|
+
value: 3.0.4
|
1431
1469
|
- name: GEMSET
|
1432
1470
|
value: que_beta
|
1433
1471
|
- name: BUNDLE_GEMFILE
|
@@ -1438,14 +1476,14 @@ blocks:
|
|
1438
1476
|
value: latest
|
1439
1477
|
commands:
|
1440
1478
|
- "./support/bundler_wrapper exec rake test"
|
1441
|
-
- name: Ruby 3.0.
|
1479
|
+
- name: Ruby 3.0.4 for rails-6.0
|
1442
1480
|
env_vars:
|
1443
1481
|
- *2
|
1444
1482
|
- *3
|
1445
1483
|
- *4
|
1446
1484
|
- *5
|
1447
1485
|
- name: RUBY_VERSION
|
1448
|
-
value: 3.0.
|
1486
|
+
value: 3.0.4
|
1449
1487
|
- name: GEMSET
|
1450
1488
|
value: rails-6.0
|
1451
1489
|
- name: BUNDLE_GEMFILE
|
@@ -1456,14 +1494,14 @@ blocks:
|
|
1456
1494
|
value: latest
|
1457
1495
|
commands:
|
1458
1496
|
- "./support/bundler_wrapper exec rake test"
|
1459
|
-
- name: Ruby 3.0.
|
1497
|
+
- name: Ruby 3.0.4 for rails-6.1
|
1460
1498
|
env_vars:
|
1461
1499
|
- *2
|
1462
1500
|
- *3
|
1463
1501
|
- *4
|
1464
1502
|
- *5
|
1465
1503
|
- name: RUBY_VERSION
|
1466
|
-
value: 3.0.
|
1504
|
+
value: 3.0.4
|
1467
1505
|
- name: GEMSET
|
1468
1506
|
value: rails-6.1
|
1469
1507
|
- name: BUNDLE_GEMFILE
|
@@ -1474,14 +1512,14 @@ blocks:
|
|
1474
1512
|
value: latest
|
1475
1513
|
commands:
|
1476
1514
|
- "./support/bundler_wrapper exec rake test"
|
1477
|
-
- name: Ruby 3.0.
|
1515
|
+
- name: Ruby 3.0.4 for rails-7.0
|
1478
1516
|
env_vars:
|
1479
1517
|
- *2
|
1480
1518
|
- *3
|
1481
1519
|
- *4
|
1482
1520
|
- *5
|
1483
1521
|
- name: RUBY_VERSION
|
1484
|
-
value: 3.0.
|
1522
|
+
value: 3.0.4
|
1485
1523
|
- name: GEMSET
|
1486
1524
|
value: rails-7.0
|
1487
1525
|
- name: BUNDLE_GEMFILE
|
@@ -1492,14 +1530,14 @@ blocks:
|
|
1492
1530
|
value: latest
|
1493
1531
|
commands:
|
1494
1532
|
- "./support/bundler_wrapper exec rake test"
|
1495
|
-
- name: Ruby 3.0.
|
1533
|
+
- name: Ruby 3.0.4 for resque-2
|
1496
1534
|
env_vars:
|
1497
1535
|
- *2
|
1498
1536
|
- *3
|
1499
1537
|
- *4
|
1500
1538
|
- *5
|
1501
1539
|
- name: RUBY_VERSION
|
1502
|
-
value: 3.0.
|
1540
|
+
value: 3.0.4
|
1503
1541
|
- name: GEMSET
|
1504
1542
|
value: resque-2
|
1505
1543
|
- name: BUNDLE_GEMFILE
|
@@ -1510,14 +1548,14 @@ blocks:
|
|
1510
1548
|
value: latest
|
1511
1549
|
commands:
|
1512
1550
|
- "./support/bundler_wrapper exec rake test"
|
1513
|
-
- name: Ruby 3.0.
|
1551
|
+
- name: Ruby 3.0.4 for sequel
|
1514
1552
|
env_vars:
|
1515
1553
|
- *2
|
1516
1554
|
- *3
|
1517
1555
|
- *4
|
1518
1556
|
- *5
|
1519
1557
|
- name: RUBY_VERSION
|
1520
|
-
value: 3.0.
|
1558
|
+
value: 3.0.4
|
1521
1559
|
- name: GEMSET
|
1522
1560
|
value: sequel
|
1523
1561
|
- name: BUNDLE_GEMFILE
|
@@ -1528,14 +1566,14 @@ blocks:
|
|
1528
1566
|
value: latest
|
1529
1567
|
commands:
|
1530
1568
|
- "./support/bundler_wrapper exec rake test"
|
1531
|
-
- name: Ruby 3.0.
|
1569
|
+
- name: Ruby 3.0.4 for sinatra
|
1532
1570
|
env_vars:
|
1533
1571
|
- *2
|
1534
1572
|
- *3
|
1535
1573
|
- *4
|
1536
1574
|
- *5
|
1537
1575
|
- name: RUBY_VERSION
|
1538
|
-
value: 3.0.
|
1576
|
+
value: 3.0.4
|
1539
1577
|
- name: GEMSET
|
1540
1578
|
value: sinatra
|
1541
1579
|
- name: BUNDLE_GEMFILE
|
@@ -1546,14 +1584,14 @@ blocks:
|
|
1546
1584
|
value: latest
|
1547
1585
|
commands:
|
1548
1586
|
- "./support/bundler_wrapper exec rake test"
|
1549
|
-
- name: Ruby 3.0.
|
1587
|
+
- name: Ruby 3.0.4 for webmachine
|
1550
1588
|
env_vars:
|
1551
1589
|
- *2
|
1552
1590
|
- *3
|
1553
1591
|
- *4
|
1554
1592
|
- *5
|
1555
1593
|
- name: RUBY_VERSION
|
1556
|
-
value: 3.0.
|
1594
|
+
value: 3.0.4
|
1557
1595
|
- name: GEMSET
|
1558
1596
|
value: webmachine
|
1559
1597
|
- name: BUNDLE_GEMFILE
|
@@ -1564,28 +1602,30 @@ blocks:
|
|
1564
1602
|
value: latest
|
1565
1603
|
commands:
|
1566
1604
|
- "./support/bundler_wrapper exec rake test"
|
1567
|
-
- name: Ruby 3.1.
|
1605
|
+
- name: Ruby 3.1.2
|
1568
1606
|
dependencies:
|
1569
1607
|
- Validation
|
1570
1608
|
task:
|
1571
1609
|
prologue:
|
1572
1610
|
commands:
|
1573
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
1574
|
-
|
1611
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1612
|
+
appsignal.gemspec)
|
1613
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1614
|
+
appsignal.gemspec)
|
1575
1615
|
- "./support/install_deps"
|
1576
1616
|
- bundle config set clean 'true'
|
1577
1617
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
1578
1618
|
- "./support/bundler_wrapper exec rake extension:install"
|
1579
1619
|
epilogue: *1
|
1580
1620
|
jobs:
|
1581
|
-
- name: Ruby 3.1.
|
1621
|
+
- name: Ruby 3.1.2 for no_dependencies
|
1582
1622
|
env_vars:
|
1583
1623
|
- *2
|
1584
1624
|
- *3
|
1585
1625
|
- *4
|
1586
1626
|
- *5
|
1587
1627
|
- name: RUBY_VERSION
|
1588
|
-
value: 3.1.
|
1628
|
+
value: 3.1.2
|
1589
1629
|
- name: GEMSET
|
1590
1630
|
value: no_dependencies
|
1591
1631
|
- name: BUNDLE_GEMFILE
|
@@ -1597,28 +1637,30 @@ blocks:
|
|
1597
1637
|
commands:
|
1598
1638
|
- "./support/bundler_wrapper exec rake test"
|
1599
1639
|
- "./support/bundler_wrapper exec rake test:failure"
|
1600
|
-
- name: Ruby 3.1.
|
1640
|
+
- name: Ruby 3.1.2 - Gems
|
1601
1641
|
dependencies:
|
1602
|
-
- Ruby 3.1.
|
1642
|
+
- Ruby 3.1.2
|
1603
1643
|
task:
|
1604
1644
|
prologue:
|
1605
1645
|
commands:
|
1606
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
1607
|
-
|
1646
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1647
|
+
appsignal.gemspec)
|
1648
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1649
|
+
appsignal.gemspec)
|
1608
1650
|
- "./support/install_deps"
|
1609
1651
|
- bundle config set clean 'true'
|
1610
1652
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
1611
1653
|
- "./support/bundler_wrapper exec rake extension:install"
|
1612
1654
|
epilogue: *1
|
1613
1655
|
jobs:
|
1614
|
-
- name: Ruby 3.1.
|
1656
|
+
- name: Ruby 3.1.2 for capistrano2
|
1615
1657
|
env_vars:
|
1616
1658
|
- *2
|
1617
1659
|
- *3
|
1618
1660
|
- *4
|
1619
1661
|
- *5
|
1620
1662
|
- name: RUBY_VERSION
|
1621
|
-
value: 3.1.
|
1663
|
+
value: 3.1.2
|
1622
1664
|
- name: GEMSET
|
1623
1665
|
value: capistrano2
|
1624
1666
|
- name: BUNDLE_GEMFILE
|
@@ -1629,14 +1671,14 @@ blocks:
|
|
1629
1671
|
value: latest
|
1630
1672
|
commands:
|
1631
1673
|
- "./support/bundler_wrapper exec rake test"
|
1632
|
-
- name: Ruby 3.1.
|
1674
|
+
- name: Ruby 3.1.2 for capistrano3
|
1633
1675
|
env_vars:
|
1634
1676
|
- *2
|
1635
1677
|
- *3
|
1636
1678
|
- *4
|
1637
1679
|
- *5
|
1638
1680
|
- name: RUBY_VERSION
|
1639
|
-
value: 3.1.
|
1681
|
+
value: 3.1.2
|
1640
1682
|
- name: GEMSET
|
1641
1683
|
value: capistrano3
|
1642
1684
|
- name: BUNDLE_GEMFILE
|
@@ -1647,14 +1689,14 @@ blocks:
|
|
1647
1689
|
value: latest
|
1648
1690
|
commands:
|
1649
1691
|
- "./support/bundler_wrapper exec rake test"
|
1650
|
-
- name: Ruby 3.1.
|
1692
|
+
- name: Ruby 3.1.2 for grape
|
1651
1693
|
env_vars:
|
1652
1694
|
- *2
|
1653
1695
|
- *3
|
1654
1696
|
- *4
|
1655
1697
|
- *5
|
1656
1698
|
- name: RUBY_VERSION
|
1657
|
-
value: 3.1.
|
1699
|
+
value: 3.1.2
|
1658
1700
|
- name: GEMSET
|
1659
1701
|
value: grape
|
1660
1702
|
- name: BUNDLE_GEMFILE
|
@@ -1665,14 +1707,14 @@ blocks:
|
|
1665
1707
|
value: latest
|
1666
1708
|
commands:
|
1667
1709
|
- "./support/bundler_wrapper exec rake test"
|
1668
|
-
- name: Ruby 3.1.
|
1710
|
+
- name: Ruby 3.1.2 for http5
|
1669
1711
|
env_vars:
|
1670
1712
|
- *2
|
1671
1713
|
- *3
|
1672
1714
|
- *4
|
1673
1715
|
- *5
|
1674
1716
|
- name: RUBY_VERSION
|
1675
|
-
value: 3.1.
|
1717
|
+
value: 3.1.2
|
1676
1718
|
- name: GEMSET
|
1677
1719
|
value: http5
|
1678
1720
|
- name: BUNDLE_GEMFILE
|
@@ -1683,14 +1725,14 @@ blocks:
|
|
1683
1725
|
value: latest
|
1684
1726
|
commands:
|
1685
1727
|
- "./support/bundler_wrapper exec rake test"
|
1686
|
-
- name: Ruby 3.1.
|
1728
|
+
- name: Ruby 3.1.2 for padrino
|
1687
1729
|
env_vars:
|
1688
1730
|
- *2
|
1689
1731
|
- *3
|
1690
1732
|
- *4
|
1691
1733
|
- *5
|
1692
1734
|
- name: RUBY_VERSION
|
1693
|
-
value: 3.1.
|
1735
|
+
value: 3.1.2
|
1694
1736
|
- name: GEMSET
|
1695
1737
|
value: padrino
|
1696
1738
|
- name: BUNDLE_GEMFILE
|
@@ -1701,14 +1743,14 @@ blocks:
|
|
1701
1743
|
value: latest
|
1702
1744
|
commands:
|
1703
1745
|
- "./support/bundler_wrapper exec rake test"
|
1704
|
-
- name: Ruby 3.1.
|
1746
|
+
- name: Ruby 3.1.2 for psych-3
|
1705
1747
|
env_vars:
|
1706
1748
|
- *2
|
1707
1749
|
- *3
|
1708
1750
|
- *4
|
1709
1751
|
- *5
|
1710
1752
|
- name: RUBY_VERSION
|
1711
|
-
value: 3.1.
|
1753
|
+
value: 3.1.2
|
1712
1754
|
- name: GEMSET
|
1713
1755
|
value: psych-3
|
1714
1756
|
- name: BUNDLE_GEMFILE
|
@@ -1719,14 +1761,14 @@ blocks:
|
|
1719
1761
|
value: latest
|
1720
1762
|
commands:
|
1721
1763
|
- "./support/bundler_wrapper exec rake test"
|
1722
|
-
- name: Ruby 3.1.
|
1764
|
+
- name: Ruby 3.1.2 for psych-4
|
1723
1765
|
env_vars:
|
1724
1766
|
- *2
|
1725
1767
|
- *3
|
1726
1768
|
- *4
|
1727
1769
|
- *5
|
1728
1770
|
- name: RUBY_VERSION
|
1729
|
-
value: 3.1.
|
1771
|
+
value: 3.1.2
|
1730
1772
|
- name: GEMSET
|
1731
1773
|
value: psych-4
|
1732
1774
|
- name: BUNDLE_GEMFILE
|
@@ -1737,14 +1779,14 @@ blocks:
|
|
1737
1779
|
value: latest
|
1738
1780
|
commands:
|
1739
1781
|
- "./support/bundler_wrapper exec rake test"
|
1740
|
-
- name: Ruby 3.1.
|
1782
|
+
- name: Ruby 3.1.2 for que
|
1741
1783
|
env_vars:
|
1742
1784
|
- *2
|
1743
1785
|
- *3
|
1744
1786
|
- *4
|
1745
1787
|
- *5
|
1746
1788
|
- name: RUBY_VERSION
|
1747
|
-
value: 3.1.
|
1789
|
+
value: 3.1.2
|
1748
1790
|
- name: GEMSET
|
1749
1791
|
value: que
|
1750
1792
|
- name: BUNDLE_GEMFILE
|
@@ -1755,14 +1797,14 @@ blocks:
|
|
1755
1797
|
value: latest
|
1756
1798
|
commands:
|
1757
1799
|
- "./support/bundler_wrapper exec rake test"
|
1758
|
-
- name: Ruby 3.1.
|
1800
|
+
- name: Ruby 3.1.2 for que_beta
|
1759
1801
|
env_vars:
|
1760
1802
|
- *2
|
1761
1803
|
- *3
|
1762
1804
|
- *4
|
1763
1805
|
- *5
|
1764
1806
|
- name: RUBY_VERSION
|
1765
|
-
value: 3.1.
|
1807
|
+
value: 3.1.2
|
1766
1808
|
- name: GEMSET
|
1767
1809
|
value: que_beta
|
1768
1810
|
- name: BUNDLE_GEMFILE
|
@@ -1773,14 +1815,14 @@ blocks:
|
|
1773
1815
|
value: latest
|
1774
1816
|
commands:
|
1775
1817
|
- "./support/bundler_wrapper exec rake test"
|
1776
|
-
- name: Ruby 3.1.
|
1818
|
+
- name: Ruby 3.1.2 for rails-6.1
|
1777
1819
|
env_vars:
|
1778
1820
|
- *2
|
1779
1821
|
- *3
|
1780
1822
|
- *4
|
1781
1823
|
- *5
|
1782
1824
|
- name: RUBY_VERSION
|
1783
|
-
value: 3.1.
|
1825
|
+
value: 3.1.2
|
1784
1826
|
- name: GEMSET
|
1785
1827
|
value: rails-6.1
|
1786
1828
|
- name: BUNDLE_GEMFILE
|
@@ -1791,14 +1833,14 @@ blocks:
|
|
1791
1833
|
value: latest
|
1792
1834
|
commands:
|
1793
1835
|
- "./support/bundler_wrapper exec rake test"
|
1794
|
-
- name: Ruby 3.1.
|
1836
|
+
- name: Ruby 3.1.2 for rails-7.0
|
1795
1837
|
env_vars:
|
1796
1838
|
- *2
|
1797
1839
|
- *3
|
1798
1840
|
- *4
|
1799
1841
|
- *5
|
1800
1842
|
- name: RUBY_VERSION
|
1801
|
-
value: 3.1.
|
1843
|
+
value: 3.1.2
|
1802
1844
|
- name: GEMSET
|
1803
1845
|
value: rails-7.0
|
1804
1846
|
- name: BUNDLE_GEMFILE
|
@@ -1809,14 +1851,14 @@ blocks:
|
|
1809
1851
|
value: latest
|
1810
1852
|
commands:
|
1811
1853
|
- "./support/bundler_wrapper exec rake test"
|
1812
|
-
- name: Ruby 3.1.
|
1854
|
+
- name: Ruby 3.1.2 for resque-2
|
1813
1855
|
env_vars:
|
1814
1856
|
- *2
|
1815
1857
|
- *3
|
1816
1858
|
- *4
|
1817
1859
|
- *5
|
1818
1860
|
- name: RUBY_VERSION
|
1819
|
-
value: 3.1.
|
1861
|
+
value: 3.1.2
|
1820
1862
|
- name: GEMSET
|
1821
1863
|
value: resque-2
|
1822
1864
|
- name: BUNDLE_GEMFILE
|
@@ -1827,14 +1869,14 @@ blocks:
|
|
1827
1869
|
value: latest
|
1828
1870
|
commands:
|
1829
1871
|
- "./support/bundler_wrapper exec rake test"
|
1830
|
-
- name: Ruby 3.1.
|
1872
|
+
- name: Ruby 3.1.2 for sequel
|
1831
1873
|
env_vars:
|
1832
1874
|
- *2
|
1833
1875
|
- *3
|
1834
1876
|
- *4
|
1835
1877
|
- *5
|
1836
1878
|
- name: RUBY_VERSION
|
1837
|
-
value: 3.1.
|
1879
|
+
value: 3.1.2
|
1838
1880
|
- name: GEMSET
|
1839
1881
|
value: sequel
|
1840
1882
|
- name: BUNDLE_GEMFILE
|
@@ -1845,14 +1887,14 @@ blocks:
|
|
1845
1887
|
value: latest
|
1846
1888
|
commands:
|
1847
1889
|
- "./support/bundler_wrapper exec rake test"
|
1848
|
-
- name: Ruby 3.1.
|
1890
|
+
- name: Ruby 3.1.2 for sinatra
|
1849
1891
|
env_vars:
|
1850
1892
|
- *2
|
1851
1893
|
- *3
|
1852
1894
|
- *4
|
1853
1895
|
- *5
|
1854
1896
|
- name: RUBY_VERSION
|
1855
|
-
value: 3.1.
|
1897
|
+
value: 3.1.2
|
1856
1898
|
- name: GEMSET
|
1857
1899
|
value: sinatra
|
1858
1900
|
- name: BUNDLE_GEMFILE
|
@@ -1863,14 +1905,14 @@ blocks:
|
|
1863
1905
|
value: latest
|
1864
1906
|
commands:
|
1865
1907
|
- "./support/bundler_wrapper exec rake test"
|
1866
|
-
- name: Ruby 3.1.
|
1908
|
+
- name: Ruby 3.1.2 for webmachine
|
1867
1909
|
env_vars:
|
1868
1910
|
- *2
|
1869
1911
|
- *3
|
1870
1912
|
- *4
|
1871
1913
|
- *5
|
1872
1914
|
- name: RUBY_VERSION
|
1873
|
-
value: 3.1.
|
1915
|
+
value: 3.1.2
|
1874
1916
|
- name: GEMSET
|
1875
1917
|
value: webmachine
|
1876
1918
|
- name: BUNDLE_GEMFILE
|
@@ -1881,28 +1923,30 @@ blocks:
|
|
1881
1923
|
value: latest
|
1882
1924
|
commands:
|
1883
1925
|
- "./support/bundler_wrapper exec rake test"
|
1884
|
-
- name: Ruby 3.2.0-
|
1926
|
+
- name: Ruby 3.2.0-preview3
|
1885
1927
|
dependencies:
|
1886
1928
|
- Validation
|
1887
1929
|
task:
|
1888
1930
|
prologue:
|
1889
1931
|
commands:
|
1890
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
1891
|
-
|
1932
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1933
|
+
appsignal.gemspec)
|
1934
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1935
|
+
appsignal.gemspec)
|
1892
1936
|
- "./support/install_deps"
|
1893
1937
|
- bundle config set clean 'true'
|
1894
1938
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
1895
1939
|
- "./support/bundler_wrapper exec rake extension:install"
|
1896
1940
|
epilogue: *1
|
1897
1941
|
jobs:
|
1898
|
-
- name: Ruby 3.2.0-
|
1942
|
+
- name: Ruby 3.2.0-preview3 for no_dependencies
|
1899
1943
|
env_vars:
|
1900
1944
|
- *2
|
1901
1945
|
- *3
|
1902
1946
|
- *4
|
1903
1947
|
- *5
|
1904
1948
|
- name: RUBY_VERSION
|
1905
|
-
value: 3.2.0-
|
1949
|
+
value: 3.2.0-preview3
|
1906
1950
|
- name: GEMSET
|
1907
1951
|
value: no_dependencies
|
1908
1952
|
- name: BUNDLE_GEMFILE
|
@@ -1911,31 +1955,36 @@ blocks:
|
|
1911
1955
|
value: latest
|
1912
1956
|
- name: _BUNDLER_VERSION
|
1913
1957
|
value: latest
|
1958
|
+
- &6
|
1959
|
+
name: _LIBYAML
|
1960
|
+
value: '1'
|
1914
1961
|
commands:
|
1915
1962
|
- "./support/bundler_wrapper exec rake test"
|
1916
1963
|
- "./support/bundler_wrapper exec rake test:failure"
|
1917
|
-
- name: Ruby 3.2.0-
|
1964
|
+
- name: Ruby 3.2.0-preview3 - Gems
|
1918
1965
|
dependencies:
|
1919
|
-
- Ruby 3.2.0-
|
1966
|
+
- Ruby 3.2.0-preview3
|
1920
1967
|
task:
|
1921
1968
|
prologue:
|
1922
1969
|
commands:
|
1923
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
1924
|
-
|
1970
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1971
|
+
appsignal.gemspec)
|
1972
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
1973
|
+
appsignal.gemspec)
|
1925
1974
|
- "./support/install_deps"
|
1926
1975
|
- bundle config set clean 'true'
|
1927
1976
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
1928
1977
|
- "./support/bundler_wrapper exec rake extension:install"
|
1929
1978
|
epilogue: *1
|
1930
1979
|
jobs:
|
1931
|
-
- name: Ruby 3.2.0-
|
1980
|
+
- name: Ruby 3.2.0-preview3 for capistrano2
|
1932
1981
|
env_vars:
|
1933
1982
|
- *2
|
1934
1983
|
- *3
|
1935
1984
|
- *4
|
1936
1985
|
- *5
|
1937
1986
|
- name: RUBY_VERSION
|
1938
|
-
value: 3.2.0-
|
1987
|
+
value: 3.2.0-preview3
|
1939
1988
|
- name: GEMSET
|
1940
1989
|
value: capistrano2
|
1941
1990
|
- name: BUNDLE_GEMFILE
|
@@ -1944,16 +1993,17 @@ blocks:
|
|
1944
1993
|
value: latest
|
1945
1994
|
- name: _BUNDLER_VERSION
|
1946
1995
|
value: latest
|
1996
|
+
- *6
|
1947
1997
|
commands:
|
1948
1998
|
- "./support/bundler_wrapper exec rake test"
|
1949
|
-
- name: Ruby 3.2.0-
|
1999
|
+
- name: Ruby 3.2.0-preview3 for capistrano3
|
1950
2000
|
env_vars:
|
1951
2001
|
- *2
|
1952
2002
|
- *3
|
1953
2003
|
- *4
|
1954
2004
|
- *5
|
1955
2005
|
- name: RUBY_VERSION
|
1956
|
-
value: 3.2.0-
|
2006
|
+
value: 3.2.0-preview3
|
1957
2007
|
- name: GEMSET
|
1958
2008
|
value: capistrano3
|
1959
2009
|
- name: BUNDLE_GEMFILE
|
@@ -1962,16 +2012,17 @@ blocks:
|
|
1962
2012
|
value: latest
|
1963
2013
|
- name: _BUNDLER_VERSION
|
1964
2014
|
value: latest
|
2015
|
+
- *6
|
1965
2016
|
commands:
|
1966
2017
|
- "./support/bundler_wrapper exec rake test"
|
1967
|
-
- name: Ruby 3.2.0-
|
2018
|
+
- name: Ruby 3.2.0-preview3 for grape
|
1968
2019
|
env_vars:
|
1969
2020
|
- *2
|
1970
2021
|
- *3
|
1971
2022
|
- *4
|
1972
2023
|
- *5
|
1973
2024
|
- name: RUBY_VERSION
|
1974
|
-
value: 3.2.0-
|
2025
|
+
value: 3.2.0-preview3
|
1975
2026
|
- name: GEMSET
|
1976
2027
|
value: grape
|
1977
2028
|
- name: BUNDLE_GEMFILE
|
@@ -1980,16 +2031,17 @@ blocks:
|
|
1980
2031
|
value: latest
|
1981
2032
|
- name: _BUNDLER_VERSION
|
1982
2033
|
value: latest
|
2034
|
+
- *6
|
1983
2035
|
commands:
|
1984
2036
|
- "./support/bundler_wrapper exec rake test"
|
1985
|
-
- name: Ruby 3.2.0-
|
2037
|
+
- name: Ruby 3.2.0-preview3 for http5
|
1986
2038
|
env_vars:
|
1987
2039
|
- *2
|
1988
2040
|
- *3
|
1989
2041
|
- *4
|
1990
2042
|
- *5
|
1991
2043
|
- name: RUBY_VERSION
|
1992
|
-
value: 3.2.0-
|
2044
|
+
value: 3.2.0-preview3
|
1993
2045
|
- name: GEMSET
|
1994
2046
|
value: http5
|
1995
2047
|
- name: BUNDLE_GEMFILE
|
@@ -1998,16 +2050,17 @@ blocks:
|
|
1998
2050
|
value: latest
|
1999
2051
|
- name: _BUNDLER_VERSION
|
2000
2052
|
value: latest
|
2053
|
+
- *6
|
2001
2054
|
commands:
|
2002
2055
|
- "./support/bundler_wrapper exec rake test"
|
2003
|
-
- name: Ruby 3.2.0-
|
2056
|
+
- name: Ruby 3.2.0-preview3 for padrino
|
2004
2057
|
env_vars:
|
2005
2058
|
- *2
|
2006
2059
|
- *3
|
2007
2060
|
- *4
|
2008
2061
|
- *5
|
2009
2062
|
- name: RUBY_VERSION
|
2010
|
-
value: 3.2.0-
|
2063
|
+
value: 3.2.0-preview3
|
2011
2064
|
- name: GEMSET
|
2012
2065
|
value: padrino
|
2013
2066
|
- name: BUNDLE_GEMFILE
|
@@ -2016,16 +2069,17 @@ blocks:
|
|
2016
2069
|
value: latest
|
2017
2070
|
- name: _BUNDLER_VERSION
|
2018
2071
|
value: latest
|
2072
|
+
- *6
|
2019
2073
|
commands:
|
2020
2074
|
- "./support/bundler_wrapper exec rake test"
|
2021
|
-
- name: Ruby 3.2.0-
|
2075
|
+
- name: Ruby 3.2.0-preview3 for psych-3
|
2022
2076
|
env_vars:
|
2023
2077
|
- *2
|
2024
2078
|
- *3
|
2025
2079
|
- *4
|
2026
2080
|
- *5
|
2027
2081
|
- name: RUBY_VERSION
|
2028
|
-
value: 3.2.0-
|
2082
|
+
value: 3.2.0-preview3
|
2029
2083
|
- name: GEMSET
|
2030
2084
|
value: psych-3
|
2031
2085
|
- name: BUNDLE_GEMFILE
|
@@ -2034,16 +2088,17 @@ blocks:
|
|
2034
2088
|
value: latest
|
2035
2089
|
- name: _BUNDLER_VERSION
|
2036
2090
|
value: latest
|
2091
|
+
- *6
|
2037
2092
|
commands:
|
2038
2093
|
- "./support/bundler_wrapper exec rake test"
|
2039
|
-
- name: Ruby 3.2.0-
|
2094
|
+
- name: Ruby 3.2.0-preview3 for psych-4
|
2040
2095
|
env_vars:
|
2041
2096
|
- *2
|
2042
2097
|
- *3
|
2043
2098
|
- *4
|
2044
2099
|
- *5
|
2045
2100
|
- name: RUBY_VERSION
|
2046
|
-
value: 3.2.0-
|
2101
|
+
value: 3.2.0-preview3
|
2047
2102
|
- name: GEMSET
|
2048
2103
|
value: psych-4
|
2049
2104
|
- name: BUNDLE_GEMFILE
|
@@ -2052,16 +2107,17 @@ blocks:
|
|
2052
2107
|
value: latest
|
2053
2108
|
- name: _BUNDLER_VERSION
|
2054
2109
|
value: latest
|
2110
|
+
- *6
|
2055
2111
|
commands:
|
2056
2112
|
- "./support/bundler_wrapper exec rake test"
|
2057
|
-
- name: Ruby 3.2.0-
|
2113
|
+
- name: Ruby 3.2.0-preview3 for que
|
2058
2114
|
env_vars:
|
2059
2115
|
- *2
|
2060
2116
|
- *3
|
2061
2117
|
- *4
|
2062
2118
|
- *5
|
2063
2119
|
- name: RUBY_VERSION
|
2064
|
-
value: 3.2.0-
|
2120
|
+
value: 3.2.0-preview3
|
2065
2121
|
- name: GEMSET
|
2066
2122
|
value: que
|
2067
2123
|
- name: BUNDLE_GEMFILE
|
@@ -2070,16 +2126,17 @@ blocks:
|
|
2070
2126
|
value: latest
|
2071
2127
|
- name: _BUNDLER_VERSION
|
2072
2128
|
value: latest
|
2129
|
+
- *6
|
2073
2130
|
commands:
|
2074
2131
|
- "./support/bundler_wrapper exec rake test"
|
2075
|
-
- name: Ruby 3.2.0-
|
2132
|
+
- name: Ruby 3.2.0-preview3 for que_beta
|
2076
2133
|
env_vars:
|
2077
2134
|
- *2
|
2078
2135
|
- *3
|
2079
2136
|
- *4
|
2080
2137
|
- *5
|
2081
2138
|
- name: RUBY_VERSION
|
2082
|
-
value: 3.2.0-
|
2139
|
+
value: 3.2.0-preview3
|
2083
2140
|
- name: GEMSET
|
2084
2141
|
value: que_beta
|
2085
2142
|
- name: BUNDLE_GEMFILE
|
@@ -2088,16 +2145,17 @@ blocks:
|
|
2088
2145
|
value: latest
|
2089
2146
|
- name: _BUNDLER_VERSION
|
2090
2147
|
value: latest
|
2148
|
+
- *6
|
2091
2149
|
commands:
|
2092
2150
|
- "./support/bundler_wrapper exec rake test"
|
2093
|
-
- name: Ruby 3.2.0-
|
2151
|
+
- name: Ruby 3.2.0-preview3 for rails-6.1
|
2094
2152
|
env_vars:
|
2095
2153
|
- *2
|
2096
2154
|
- *3
|
2097
2155
|
- *4
|
2098
2156
|
- *5
|
2099
2157
|
- name: RUBY_VERSION
|
2100
|
-
value: 3.2.0-
|
2158
|
+
value: 3.2.0-preview3
|
2101
2159
|
- name: GEMSET
|
2102
2160
|
value: rails-6.1
|
2103
2161
|
- name: BUNDLE_GEMFILE
|
@@ -2106,16 +2164,17 @@ blocks:
|
|
2106
2164
|
value: latest
|
2107
2165
|
- name: _BUNDLER_VERSION
|
2108
2166
|
value: latest
|
2167
|
+
- *6
|
2109
2168
|
commands:
|
2110
2169
|
- "./support/bundler_wrapper exec rake test"
|
2111
|
-
- name: Ruby 3.2.0-
|
2170
|
+
- name: Ruby 3.2.0-preview3 for rails-7.0
|
2112
2171
|
env_vars:
|
2113
2172
|
- *2
|
2114
2173
|
- *3
|
2115
2174
|
- *4
|
2116
2175
|
- *5
|
2117
2176
|
- name: RUBY_VERSION
|
2118
|
-
value: 3.2.0-
|
2177
|
+
value: 3.2.0-preview3
|
2119
2178
|
- name: GEMSET
|
2120
2179
|
value: rails-7.0
|
2121
2180
|
- name: BUNDLE_GEMFILE
|
@@ -2124,16 +2183,17 @@ blocks:
|
|
2124
2183
|
value: latest
|
2125
2184
|
- name: _BUNDLER_VERSION
|
2126
2185
|
value: latest
|
2186
|
+
- *6
|
2127
2187
|
commands:
|
2128
2188
|
- "./support/bundler_wrapper exec rake test"
|
2129
|
-
- name: Ruby 3.2.0-
|
2189
|
+
- name: Ruby 3.2.0-preview3 for resque-2
|
2130
2190
|
env_vars:
|
2131
2191
|
- *2
|
2132
2192
|
- *3
|
2133
2193
|
- *4
|
2134
2194
|
- *5
|
2135
2195
|
- name: RUBY_VERSION
|
2136
|
-
value: 3.2.0-
|
2196
|
+
value: 3.2.0-preview3
|
2137
2197
|
- name: GEMSET
|
2138
2198
|
value: resque-2
|
2139
2199
|
- name: BUNDLE_GEMFILE
|
@@ -2142,16 +2202,17 @@ blocks:
|
|
2142
2202
|
value: latest
|
2143
2203
|
- name: _BUNDLER_VERSION
|
2144
2204
|
value: latest
|
2205
|
+
- *6
|
2145
2206
|
commands:
|
2146
2207
|
- "./support/bundler_wrapper exec rake test"
|
2147
|
-
- name: Ruby 3.2.0-
|
2208
|
+
- name: Ruby 3.2.0-preview3 for sequel
|
2148
2209
|
env_vars:
|
2149
2210
|
- *2
|
2150
2211
|
- *3
|
2151
2212
|
- *4
|
2152
2213
|
- *5
|
2153
2214
|
- name: RUBY_VERSION
|
2154
|
-
value: 3.2.0-
|
2215
|
+
value: 3.2.0-preview3
|
2155
2216
|
- name: GEMSET
|
2156
2217
|
value: sequel
|
2157
2218
|
- name: BUNDLE_GEMFILE
|
@@ -2160,16 +2221,17 @@ blocks:
|
|
2160
2221
|
value: latest
|
2161
2222
|
- name: _BUNDLER_VERSION
|
2162
2223
|
value: latest
|
2224
|
+
- *6
|
2163
2225
|
commands:
|
2164
2226
|
- "./support/bundler_wrapper exec rake test"
|
2165
|
-
- name: Ruby 3.2.0-
|
2227
|
+
- name: Ruby 3.2.0-preview3 for sinatra
|
2166
2228
|
env_vars:
|
2167
2229
|
- *2
|
2168
2230
|
- *3
|
2169
2231
|
- *4
|
2170
2232
|
- *5
|
2171
2233
|
- name: RUBY_VERSION
|
2172
|
-
value: 3.2.0-
|
2234
|
+
value: 3.2.0-preview3
|
2173
2235
|
- name: GEMSET
|
2174
2236
|
value: sinatra
|
2175
2237
|
- name: BUNDLE_GEMFILE
|
@@ -2178,16 +2240,17 @@ blocks:
|
|
2178
2240
|
value: latest
|
2179
2241
|
- name: _BUNDLER_VERSION
|
2180
2242
|
value: latest
|
2243
|
+
- *6
|
2181
2244
|
commands:
|
2182
2245
|
- "./support/bundler_wrapper exec rake test"
|
2183
|
-
- name: Ruby 3.2.0-
|
2246
|
+
- name: Ruby 3.2.0-preview3 for webmachine
|
2184
2247
|
env_vars:
|
2185
2248
|
- *2
|
2186
2249
|
- *3
|
2187
2250
|
- *4
|
2188
2251
|
- *5
|
2189
2252
|
- name: RUBY_VERSION
|
2190
|
-
value: 3.2.0-
|
2253
|
+
value: 3.2.0-preview3
|
2191
2254
|
- name: GEMSET
|
2192
2255
|
value: webmachine
|
2193
2256
|
- name: BUNDLE_GEMFILE
|
@@ -2196,30 +2259,33 @@ blocks:
|
|
2196
2259
|
value: latest
|
2197
2260
|
- name: _BUNDLER_VERSION
|
2198
2261
|
value: latest
|
2262
|
+
- *6
|
2199
2263
|
commands:
|
2200
2264
|
- "./support/bundler_wrapper exec rake test"
|
2201
|
-
- name: Ruby jruby-9.
|
2265
|
+
- name: Ruby jruby-9.3.9.0
|
2202
2266
|
dependencies:
|
2203
2267
|
- Validation
|
2204
2268
|
task:
|
2205
2269
|
prologue:
|
2206
2270
|
commands:
|
2207
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
2208
|
-
|
2271
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2272
|
+
appsignal.gemspec)
|
2273
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2274
|
+
appsignal.gemspec)
|
2209
2275
|
- "./support/install_deps"
|
2210
2276
|
- bundle config set clean 'true'
|
2211
2277
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
2212
2278
|
- "./support/bundler_wrapper exec rake extension:install"
|
2213
2279
|
epilogue: *1
|
2214
2280
|
jobs:
|
2215
|
-
- name: Ruby jruby-9.
|
2281
|
+
- name: Ruby jruby-9.3.9.0 for no_dependencies
|
2216
2282
|
env_vars:
|
2217
2283
|
- *2
|
2218
2284
|
- *3
|
2219
2285
|
- *4
|
2220
2286
|
- *5
|
2221
2287
|
- name: RUBY_VERSION
|
2222
|
-
value: jruby-9.
|
2288
|
+
value: jruby-9.3.9.0
|
2223
2289
|
- name: GEMSET
|
2224
2290
|
value: no_dependencies
|
2225
2291
|
- name: BUNDLE_GEMFILE
|
@@ -2228,34 +2294,33 @@ blocks:
|
|
2228
2294
|
value: latest
|
2229
2295
|
- name: _BUNDLER_VERSION
|
2230
2296
|
value: latest
|
2231
|
-
- &6
|
2232
|
-
name: _C_VERSION
|
2233
|
-
value: '8'
|
2234
2297
|
commands:
|
2235
2298
|
- "./support/bundler_wrapper exec rake test"
|
2236
2299
|
- "./support/bundler_wrapper exec rake test:failure"
|
2237
|
-
- name: Ruby jruby-9.
|
2300
|
+
- name: Ruby jruby-9.3.9.0 - Gems
|
2238
2301
|
dependencies:
|
2239
|
-
- Ruby jruby-9.
|
2302
|
+
- Ruby jruby-9.3.9.0
|
2240
2303
|
task:
|
2241
2304
|
prologue:
|
2242
2305
|
commands:
|
2243
|
-
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
2244
|
-
|
2306
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2307
|
+
appsignal.gemspec)
|
2308
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2309
|
+
appsignal.gemspec)
|
2245
2310
|
- "./support/install_deps"
|
2246
2311
|
- bundle config set clean 'true'
|
2247
2312
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
2248
2313
|
- "./support/bundler_wrapper exec rake extension:install"
|
2249
2314
|
epilogue: *1
|
2250
2315
|
jobs:
|
2251
|
-
- name: Ruby jruby-9.
|
2316
|
+
- name: Ruby jruby-9.3.9.0 for rails-5.2
|
2252
2317
|
env_vars:
|
2253
2318
|
- *2
|
2254
2319
|
- *3
|
2255
2320
|
- *4
|
2256
2321
|
- *5
|
2257
2322
|
- name: RUBY_VERSION
|
2258
|
-
value: jruby-9.
|
2323
|
+
value: jruby-9.3.9.0
|
2259
2324
|
- name: GEMSET
|
2260
2325
|
value: rails-5.2
|
2261
2326
|
- name: BUNDLE_GEMFILE
|
@@ -2264,106 +2329,107 @@ blocks:
|
|
2264
2329
|
value: latest
|
2265
2330
|
- name: _BUNDLER_VERSION
|
2266
2331
|
value: latest
|
2267
|
-
- *6
|
2268
2332
|
commands:
|
2269
2333
|
- "./support/bundler_wrapper exec rake test"
|
2270
|
-
|
2334
|
+
- name: Ruby jruby-9.4.0.0
|
2335
|
+
dependencies:
|
2336
|
+
- Validation
|
2337
|
+
task:
|
2338
|
+
prologue:
|
2339
|
+
commands:
|
2340
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2341
|
+
appsignal.gemspec)
|
2342
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2343
|
+
appsignal.gemspec)
|
2344
|
+
- "./support/install_deps"
|
2345
|
+
- bundle config set clean 'true'
|
2346
|
+
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
2347
|
+
- "./support/bundler_wrapper exec rake extension:install"
|
2348
|
+
epilogue: *1
|
2349
|
+
jobs:
|
2350
|
+
- name: Ruby jruby-9.4.0.0 for no_dependencies
|
2271
2351
|
env_vars:
|
2272
2352
|
- *2
|
2273
2353
|
- *3
|
2274
2354
|
- *4
|
2275
2355
|
- *5
|
2276
2356
|
- name: RUBY_VERSION
|
2277
|
-
value: jruby-9.
|
2357
|
+
value: jruby-9.4.0.0
|
2278
2358
|
- name: GEMSET
|
2279
|
-
value:
|
2359
|
+
value: no_dependencies
|
2280
2360
|
- name: BUNDLE_GEMFILE
|
2281
|
-
value: gemfiles/
|
2361
|
+
value: gemfiles/no_dependencies.gemfile
|
2282
2362
|
- name: _RUBYGEMS_VERSION
|
2283
2363
|
value: latest
|
2284
2364
|
- name: _BUNDLER_VERSION
|
2285
2365
|
value: latest
|
2286
|
-
- *6
|
2287
2366
|
commands:
|
2288
2367
|
- "./support/bundler_wrapper exec rake test"
|
2289
|
-
|
2368
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
2369
|
+
- name: Ruby jruby-9.4.0.0 - Gems
|
2370
|
+
dependencies:
|
2371
|
+
- Ruby jruby-9.4.0.0
|
2372
|
+
task:
|
2373
|
+
prologue:
|
2374
|
+
commands:
|
2375
|
+
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2376
|
+
appsignal.gemspec)
|
2377
|
+
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum
|
2378
|
+
appsignal.gemspec)
|
2379
|
+
- "./support/install_deps"
|
2380
|
+
- bundle config set clean 'true'
|
2381
|
+
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
2382
|
+
- "./support/bundler_wrapper exec rake extension:install"
|
2383
|
+
epilogue: *1
|
2384
|
+
jobs:
|
2385
|
+
- name: Ruby jruby-9.4.0.0 for rails-6.0
|
2290
2386
|
env_vars:
|
2291
2387
|
- *2
|
2292
2388
|
- *3
|
2293
2389
|
- *4
|
2294
2390
|
- *5
|
2295
2391
|
- name: RUBY_VERSION
|
2296
|
-
value: jruby-9.
|
2392
|
+
value: jruby-9.4.0.0
|
2297
2393
|
- name: GEMSET
|
2298
|
-
value: rails-6.
|
2394
|
+
value: rails-6.0
|
2299
2395
|
- name: BUNDLE_GEMFILE
|
2300
|
-
value: gemfiles/rails-6.
|
2396
|
+
value: gemfiles/rails-6.0.gemfile
|
2301
2397
|
- name: _RUBYGEMS_VERSION
|
2302
2398
|
value: latest
|
2303
2399
|
- name: _BUNDLER_VERSION
|
2304
2400
|
value: latest
|
2305
|
-
- *6
|
2306
2401
|
commands:
|
2307
2402
|
- "./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
|
2403
|
+
- name: Ruby jruby-9.4.0.0 for rails-6.1
|
2323
2404
|
env_vars:
|
2324
2405
|
- *2
|
2325
2406
|
- *3
|
2326
2407
|
- *4
|
2327
2408
|
- *5
|
2328
2409
|
- name: RUBY_VERSION
|
2329
|
-
value: jruby-9.
|
2410
|
+
value: jruby-9.4.0.0
|
2330
2411
|
- name: GEMSET
|
2331
|
-
value:
|
2412
|
+
value: rails-6.1
|
2332
2413
|
- name: BUNDLE_GEMFILE
|
2333
|
-
value: gemfiles/
|
2414
|
+
value: gemfiles/rails-6.1.gemfile
|
2334
2415
|
- name: _RUBYGEMS_VERSION
|
2335
2416
|
value: latest
|
2336
2417
|
- name: _BUNDLER_VERSION
|
2337
2418
|
value: latest
|
2338
2419
|
commands:
|
2339
2420
|
- "./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
|
2421
|
+
- name: Ruby jruby-9.4.0.0 for rails-7.0
|
2356
2422
|
env_vars:
|
2357
2423
|
- *2
|
2358
2424
|
- *3
|
2359
2425
|
- *4
|
2360
2426
|
- *5
|
2361
2427
|
- name: RUBY_VERSION
|
2362
|
-
value: jruby-9.
|
2428
|
+
value: jruby-9.4.0.0
|
2363
2429
|
- name: GEMSET
|
2364
|
-
value: rails-
|
2430
|
+
value: rails-7.0
|
2365
2431
|
- name: BUNDLE_GEMFILE
|
2366
|
-
value: gemfiles/rails-
|
2432
|
+
value: gemfiles/rails-7.0.gemfile
|
2367
2433
|
- name: _RUBYGEMS_VERSION
|
2368
2434
|
value: latest
|
2369
2435
|
- name: _BUNDLER_VERSION
|