honeycomb-beeline 1.3.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddd03586fceabfcdb1d51f914e4a61cae2c87bbe295341036969a9fca40b3484
4
- data.tar.gz: cc72f4183017b81d07ee227a4a5aa48c7e933b24f551b61328575fe5d3cb880b
3
+ metadata.gz: 861b65eb2d7ef9f82cad990b966247465eebb0eac7ec4fa6d668491d979e9eee
4
+ data.tar.gz: 2e1b7ef3a15d2b2be27a4593eafabe399331909df925724abc3978cc47aed01c
5
5
  SHA512:
6
- metadata.gz: 93c1a6e138fb39c9a83591c3c10b7427ff28b4f397c2844f631e22d241976e4d3d4f26bb63bdf2380fb35bfe2ae016ff3e659611808608ffeba36c7e10dd6f6c
7
- data.tar.gz: ba29c324e453cb42180134008cd8586dba0c1b34ad71a3efc2b4a9165ad380a116d2fd533a9c06cdd7ea2e2fc033a9cf09b9d98f8e68a6ebd242631dba1c4c61
6
+ metadata.gz: b50cd4118393ff03349894bb4942bb166baafb51fdf587b76a5e8f1b34411d2a49c8698cc9bb8f28746211143f93bf88e5fc23de13479acbd526383f7065410d
7
+ data.tar.gz: f123f2ad239e1f72874199999d08a8b3137b318f1d92d9a295b3bfdb4d17d8097c3577ebca666e7b26d0d9d5940fe6b6db2ec92f9028dfbffa1740898e43281c
@@ -1,28 +1,9 @@
1
1
  version: 2.1
2
-
3
- # required as all of the jobs need to have a tag filter for some reason
4
- tag_filters: &tag_filters
5
- filters:
6
- tags:
7
- only: /.*/
8
-
9
- executors:
10
- ruby-two-three:
11
- docker:
12
- - image: circleci/ruby:2.3
13
- ruby-two-four:
14
- docker:
15
- - image: circleci/ruby:2.4
16
- ruby-two-five:
17
- docker:
18
- - image: circleci/ruby:2.5
19
- ruby-two-six:
20
- docker:
21
- - image: circleci/ruby:2.6
22
-
23
2
  commands:
24
3
  ruby:
25
4
  parameters:
5
+ ruby-version:
6
+ type: string
26
7
  gemfile:
27
8
  type: string
28
9
  default: Gemfile
@@ -33,82 +14,21 @@ commands:
33
14
  - checkout
34
15
  - restore_cache:
35
16
  keys:
36
- - gems-v1-{{ checksum "Gemfile.lock" }}
37
- - gems-v1-
17
+ - gems-v1-<< parameters.ruby-version >>-{{ checksum "Gemfile.lock" }}
18
+ - gems-v1-<< parameters.ruby-version >>
38
19
  - run: gem update bundler
39
20
  - run: BUNDLE_GEMFILE=<< parameters.gemfile >> ./.circleci/bundler_version.sh
40
21
  - run: BUNDLE_GEMFILE=<< parameters.gemfile >> bundle install --jobs=4 --retry=3 --path vendor/bundle
41
22
  - save_cache:
42
23
  paths:
43
24
  - ./vendor/bundle
44
- key: gems-v1-{{ checksum "Gemfile.lock" }}
25
+ key: gems-v1-<< parameters.ruby-version >>-{{ checksum "Gemfile.lock" }}
45
26
  - run: BUNDLE_GEMFILE=<< parameters.gemfile >> << parameters.command >>
46
27
 
47
- gemfiles:
48
- aws-two: &aws-two
49
- steps:
50
- - ruby:
51
- gemfile: gemfiles/aws_2.gemfile
52
- aws-three: &aws-three
53
- steps:
54
- - ruby:
55
- gemfile: gemfiles/aws_3.gemfile
56
- faraday: &faraday
57
- steps:
58
- - ruby:
59
- gemfile: gemfiles/faraday.gemfile
60
- sequel-four: &sequel-four
61
- steps:
62
- - ruby:
63
- gemfile: gemfiles/sequel4.gemfile
64
- sequel-five: &sequel-five
65
- steps:
66
- - ruby:
67
- gemfile: gemfiles/sequel5.gemfile
68
- sinatra: &sinatra
69
- steps:
70
- - ruby:
71
- gemfile: gemfiles/sinatra.gemfile
72
- rack: &rack
73
- steps:
74
- - ruby:
75
- gemfile: gemfiles/rack.gemfile
76
- rails-four-one: &rails-four-one
77
- steps:
78
- - ruby:
79
- gemfile: gemfiles/rails_41.gemfile
80
- rails-four-two: &rails-four-two
81
- steps:
82
- - ruby:
83
- gemfile: gemfiles/rails_42.gemfile
84
- rails-five: &rails-five
85
- steps:
86
- - ruby:
87
- gemfile: gemfiles/rails_5.gemfile
88
- rails-five-one: &rails-five-one
89
- steps:
90
- - ruby:
91
- gemfile: gemfiles/rails_51.gemfile
92
- rails-five-two: &rails-five-two
93
- steps:
94
- - ruby:
95
- gemfile: gemfiles/rails_52.gemfile
96
- rails-six: &rails-six
97
- steps:
98
- - ruby:
99
- gemfile: gemfiles/rails_6.gemfile
100
- redis-three: &redis-three
101
- steps:
102
- - ruby:
103
- gemfile: gemfiles/redis_3.gemfile
104
- redis-four: &redis-four
105
- steps:
106
- - ruby:
107
- gemfile: gemfiles/redis_4.gemfile
108
-
109
28
  jobs:
110
29
  publish:
111
- executor: ruby-two-six
30
+ docker:
31
+ - image: circleci/ruby:2.6
112
32
  steps:
113
33
  - checkout
114
34
  - run:
@@ -117,476 +37,102 @@ jobs:
117
37
  - run: gem build honeycomb-beeline.gemspec
118
38
  - run: gem push honeycomb-beeline-*.gem
119
39
  lint:
120
- executor: ruby-two-six
40
+ parameters:
41
+ ruby-version:
42
+ type: string
43
+ default: "2.6"
44
+ docker:
45
+ - image: circleci/ruby:<< parameters.ruby-version >>
121
46
  steps:
122
47
  - ruby:
48
+ ruby-version: << parameters.ruby-version >>
123
49
  command: bundle exec rake rubocop
124
- aws-two-ruby-two-three:
125
- <<: *aws-two
126
- executor: ruby-two-three
127
- aws-two-ruby-two-four:
128
- <<: *aws-two
129
- executor: ruby-two-four
130
- aws-two-ruby-two-five:
131
- <<: *aws-two
132
- executor: ruby-two-five
133
- aws-two-ruby-two-six:
134
- <<: *aws-two
135
- executor: ruby-two-six
136
- aws-three-ruby-two-three:
137
- <<: *aws-three
138
- executor: ruby-two-three
139
- aws-three-ruby-two-four:
140
- <<: *aws-three
141
- executor: ruby-two-four
142
- aws-three-ruby-two-five:
143
- <<: *aws-three
144
- executor: ruby-two-five
145
- aws-three-ruby-two-six:
146
- <<: *aws-three
147
- executor: ruby-two-six
148
- faraday-ruby-two-three:
149
- <<: *faraday
150
- executor: ruby-two-three
151
- faraday-ruby-two-four:
152
- <<: *faraday
153
- executor: ruby-two-four
154
- faraday-ruby-two-five:
155
- <<: *faraday
156
- executor: ruby-two-five
157
- faraday-ruby-two-six:
158
- <<: *faraday
159
- executor: ruby-two-six
160
- sequel-four-ruby-two-three:
161
- <<: *sequel-four
162
- executor: ruby-two-three
163
- sequel-four-ruby-two-four:
164
- <<: *sequel-four
165
- executor: ruby-two-four
166
- sequel-four-ruby-two-five:
167
- <<: *sequel-four
168
- executor: ruby-two-five
169
- sequel-four-ruby-two-six:
170
- <<: *sequel-four
171
- executor: ruby-two-six
172
- sequel-five-ruby-two-three:
173
- <<: *sequel-five
174
- executor: ruby-two-three
175
- sequel-five-ruby-two-four:
176
- <<: *sequel-five
177
- executor: ruby-two-four
178
- sequel-five-ruby-two-five:
179
- <<: *sequel-five
180
- executor: ruby-two-five
181
- sequel-five-ruby-two-six:
182
- <<: *sequel-five
183
- executor: ruby-two-six
184
- sinatra-ruby-two-three:
185
- <<: *sinatra
186
- executor: ruby-two-three
187
- sinatra-ruby-two-four:
188
- <<: *sinatra
189
- executor: ruby-two-four
190
- sinatra-ruby-two-five:
191
- <<: *sinatra
192
- executor: ruby-two-five
193
- sinatra-ruby-two-six:
194
- <<: *sinatra
195
- executor: ruby-two-six
196
- rack-ruby-two-three:
197
- <<: *rack
198
- executor: ruby-two-three
199
- rack-ruby-two-four:
200
- <<: *rack
201
- executor: ruby-two-four
202
- rack-ruby-two-five:
203
- <<: *rack
204
- executor: ruby-two-five
205
- rack-ruby-two-six:
206
- <<: *rack
207
- executor: ruby-two-six
208
- rails-four-one-ruby-two-three:
209
- <<: *rails-four-one
210
- executor: ruby-two-three
211
- rails-four-one-ruby-two-four:
212
- <<: *rails-four-one
213
- executor: ruby-two-four
214
- rails-four-one-ruby-two-five:
215
- <<: *rails-four-one
216
- executor: ruby-two-five
217
- rails-four-one-ruby-two-six:
218
- <<: *rails-four-one
219
- executor: ruby-two-six
220
- rails-four-two-ruby-two-three:
221
- <<: *rails-four-two
222
- executor: ruby-two-three
223
- rails-four-two-ruby-two-four:
224
- <<: *rails-four-two
225
- executor: ruby-two-four
226
- rails-four-two-ruby-two-five:
227
- <<: *rails-four-two
228
- executor: ruby-two-five
229
- rails-four-two-ruby-two-six:
230
- <<: *rails-four-two
231
- executor: ruby-two-six
232
- rails-five-ruby-two-three:
233
- <<: *rails-five
234
- executor: ruby-two-three
235
- rails-five-ruby-two-four:
236
- <<: *rails-five
237
- executor: ruby-two-four
238
- rails-five-ruby-two-five:
239
- <<: *rails-five
240
- executor: ruby-two-five
241
- rails-five-ruby-two-six:
242
- <<: *rails-five
243
- executor: ruby-two-six
244
- rails-five-one-ruby-two-three:
245
- <<: *rails-five-one
246
- executor: ruby-two-three
247
- rails-five-one-ruby-two-four:
248
- <<: *rails-five-one
249
- executor: ruby-two-four
250
- rails-five-one-ruby-two-five:
251
- <<: *rails-five-one
252
- executor: ruby-two-five
253
- rails-five-one-ruby-two-six:
254
- <<: *rails-five-one
255
- executor: ruby-two-six
256
- rails-five-two-ruby-two-three:
257
- <<: *rails-five-two
258
- executor: ruby-two-three
259
- rails-five-two-ruby-two-four:
260
- <<: *rails-five-two
261
- executor: ruby-two-four
262
- rails-five-two-ruby-two-five:
263
- <<: *rails-five-two
264
- executor: ruby-two-five
265
- rails-five-two-ruby-two-six:
266
- <<: *rails-five-two
267
- executor: ruby-two-six
268
- rails-six-ruby-two-three:
269
- <<: *rails-six
270
- executor: ruby-two-three
271
- rails-six-ruby-two-four:
272
- <<: *rails-six
273
- executor: ruby-two-four
274
- rails-six-ruby-two-five:
275
- <<: *rails-six
276
- executor: ruby-two-five
277
- rails-six-ruby-two-six:
278
- <<: *rails-six
279
- executor: ruby-two-six
280
- redis-three-ruby-two-three:
281
- <<: *redis-three
282
- executor: ruby-two-three
283
- redis-three-ruby-two-four:
284
- <<: *redis-three
285
- executor: ruby-two-four
286
- redis-three-ruby-two-five:
287
- <<: *redis-three
288
- executor: ruby-two-five
289
- redis-three-ruby-two-six:
290
- <<: *redis-three
291
- executor: ruby-two-six
292
- redis-four-ruby-two-three:
293
- <<: *redis-four
294
- executor: ruby-two-three
295
- redis-four-ruby-two-four:
296
- <<: *redis-four
297
- executor: ruby-two-four
298
- redis-four-ruby-two-five:
299
- <<: *redis-four
300
- executor: ruby-two-five
301
- redis-four-ruby-two-six:
302
- <<: *redis-four
303
- executor: ruby-two-six
50
+ test:
51
+ parameters:
52
+ gemfile:
53
+ type: string
54
+ ruby-version:
55
+ type: string
56
+ docker:
57
+ - image: circleci/ruby:<< parameters.ruby-version >>
58
+ steps:
59
+ - ruby:
60
+ ruby-version: << parameters.ruby-version >>
61
+ gemfile: << parameters.gemfile >>
62
+ command: bundle exec rake test
304
63
 
305
64
  workflows:
306
- version: 2
65
+ nightly:
66
+ triggers:
67
+ - schedule:
68
+ cron: "0 0 * * *"
69
+ filters:
70
+ branches:
71
+ only:
72
+ - main
73
+ jobs:
74
+ - lint
75
+ - test: &test
76
+ requires:
77
+ - lint
78
+ matrix:
79
+ parameters:
80
+ ruby-version: ["2.2", "2.3", "2.4", "2.5", "2.6", "2.7"]
81
+ gemfile:
82
+ - gemfiles/aws_2.gemfile
83
+ - gemfiles/aws_3.gemfile
84
+ - gemfiles/faraday_0.gemfile
85
+ - gemfiles/faraday_1.gemfile
86
+ - gemfiles/sequel4.gemfile
87
+ - gemfiles/sequel5.gemfile
88
+ - gemfiles/sinatra.gemfile
89
+ - gemfiles/rack.gemfile
90
+ - gemfiles/rails_41.gemfile
91
+ - gemfiles/rails_42.gemfile
92
+ - gemfiles/rails_5.gemfile
93
+ - gemfiles/rails_51.gemfile
94
+ - gemfiles/rails_52.gemfile
95
+ - gemfiles/rails_6.gemfile
96
+ - gemfiles/redis_3.gemfile
97
+ - gemfiles/redis_4.gemfile
98
+ exclude:
99
+ - ruby-version: "2.2"
100
+ gemfile: gemfiles/faraday_1.gemfile
101
+ - ruby-version: "2.2"
102
+ gemfile: gemfiles/rails_52.gemfile
103
+ - ruby-version: "2.2"
104
+ gemfile: gemfiles/rails_6.gemfile
105
+ - ruby-version: "2.3"
106
+ gemfile: gemfiles/rails_6.gemfile
107
+ - ruby-version: "2.4"
108
+ gemfile: gemfiles/rails_6.gemfile
109
+ - ruby-version: "2.4"
110
+ gemfile: gemfiles/rails_41.gemfile
111
+ - ruby-version: "2.5"
112
+ gemfile: gemfiles/rails_41.gemfile
113
+ - ruby-version: "2.6"
114
+ gemfile: gemfiles/rails_41.gemfile
115
+ - ruby-version: "2.7"
116
+ gemfile: gemfiles/rails_41.gemfile
117
+ - ruby-version: "2.7"
118
+ gemfile: gemfiles/rails_42.gemfile
307
119
  beeline:
308
120
  jobs:
309
- - lint: *tag_filters
310
- - aws-two-ruby-two-three:
311
- <<: *tag_filters
312
- requires:
313
- - lint
314
- - aws-two-ruby-two-four:
315
- <<: *tag_filters
316
- requires:
317
- - lint
318
- - aws-two-ruby-two-five:
319
- <<: *tag_filters
320
- requires:
321
- - lint
322
- - aws-two-ruby-two-six:
323
- <<: *tag_filters
324
- requires:
325
- - lint
326
- - aws-three-ruby-two-three:
327
- <<: *tag_filters
328
- requires:
329
- - lint
330
- - aws-three-ruby-two-four:
331
- <<: *tag_filters
332
- requires:
333
- - lint
334
- - aws-three-ruby-two-five:
335
- <<: *tag_filters
336
- requires:
337
- - lint
338
- - aws-three-ruby-two-six:
339
- <<: *tag_filters
340
- requires:
341
- - lint
342
- - faraday-ruby-two-three:
343
- <<: *tag_filters
344
- requires:
345
- - lint
346
- - faraday-ruby-two-four:
347
- <<: *tag_filters
348
- requires:
349
- - lint
350
- - faraday-ruby-two-five:
351
- <<: *tag_filters
352
- requires:
353
- - lint
354
- - faraday-ruby-two-six:
355
- <<: *tag_filters
356
- requires:
357
- - lint
358
- - sequel-four-ruby-two-three:
359
- <<: *tag_filters
360
- requires:
361
- - lint
362
- - sequel-four-ruby-two-four:
363
- <<: *tag_filters
364
- requires:
365
- - lint
366
- - sequel-four-ruby-two-five:
367
- <<: *tag_filters
368
- requires:
369
- - lint
370
- - sequel-four-ruby-two-six:
371
- <<: *tag_filters
372
- requires:
373
- - lint
374
- - sequel-five-ruby-two-three:
375
- <<: *tag_filters
376
- requires:
377
- - lint
378
- - sequel-five-ruby-two-four:
379
- <<: *tag_filters
380
- requires:
381
- - lint
382
- - sequel-five-ruby-two-five:
383
- <<: *tag_filters
384
- requires:
385
- - lint
386
- - sequel-five-ruby-two-six:
387
- <<: *tag_filters
388
- requires:
389
- - lint
390
- - sinatra-ruby-two-three:
391
- <<: *tag_filters
392
- requires:
393
- - lint
394
- - sinatra-ruby-two-four:
395
- <<: *tag_filters
396
- requires:
397
- - lint
398
- - sinatra-ruby-two-five:
399
- <<: *tag_filters
400
- requires:
401
- - lint
402
- - sinatra-ruby-two-six:
403
- <<: *tag_filters
404
- requires:
405
- - lint
406
- - rack-ruby-two-three:
407
- <<: *tag_filters
408
- requires:
409
- - lint
410
- - rack-ruby-two-four:
411
- <<: *tag_filters
412
- requires:
413
- - lint
414
- - rack-ruby-two-five:
415
- <<: *tag_filters
416
- requires:
417
- - lint
418
- - rack-ruby-two-six:
419
- <<: *tag_filters
420
- requires:
421
- - lint
422
- - rails-four-one-ruby-two-three:
423
- <<: *tag_filters
424
- requires:
425
- - lint
426
- - rails-four-two-ruby-two-three:
427
- <<: *tag_filters
428
- requires:
429
- - lint
430
- - rails-four-two-ruby-two-four:
431
- <<: *tag_filters
432
- requires:
433
- - lint
434
- - rails-four-two-ruby-two-five:
435
- <<: *tag_filters
436
- requires:
437
- - lint
438
- - rails-four-two-ruby-two-six:
439
- <<: *tag_filters
440
- requires:
441
- - lint
442
- - rails-five-ruby-two-three:
443
- <<: *tag_filters
444
- requires:
445
- - lint
446
- - rails-five-ruby-two-four:
447
- <<: *tag_filters
448
- requires:
449
- - lint
450
- - rails-five-ruby-two-five:
451
- <<: *tag_filters
452
- requires:
453
- - lint
454
- - rails-five-ruby-two-six:
455
- <<: *tag_filters
456
- requires:
457
- - lint
458
- - rails-five-one-ruby-two-three:
459
- <<: *tag_filters
460
- requires:
461
- - lint
462
- - rails-five-one-ruby-two-four:
463
- <<: *tag_filters
464
- requires:
465
- - lint
466
- - rails-five-one-ruby-two-five:
467
- <<: *tag_filters
468
- requires:
469
- - lint
470
- - rails-five-one-ruby-two-six:
471
- <<: *tag_filters
472
- requires:
473
- - lint
474
- - rails-five-two-ruby-two-three:
475
- <<: *tag_filters
476
- requires:
477
- - lint
478
- - rails-five-two-ruby-two-four:
479
- <<: *tag_filters
480
- requires:
481
- - lint
482
- - rails-five-two-ruby-two-five:
483
- <<: *tag_filters
484
- requires:
485
- - lint
486
- - rails-five-two-ruby-two-six:
487
- <<: *tag_filters
488
- requires:
489
- - lint
490
- - rails-six-ruby-two-five:
491
- <<: *tag_filters
492
- requires:
493
- - lint
494
- - rails-six-ruby-two-six:
495
- <<: *tag_filters
496
- requires:
497
- - lint
498
- - redis-three-ruby-two-three:
499
- <<: *tag_filters
500
- requires:
501
- - lint
502
- - redis-three-ruby-two-four:
503
- <<: *tag_filters
504
- requires:
505
- - lint
506
- - redis-three-ruby-two-five:
507
- <<: *tag_filters
508
- requires:
509
- - lint
510
- - redis-three-ruby-two-six:
511
- <<: *tag_filters
512
- requires:
513
- - lint
514
- - redis-four-ruby-two-three:
515
- <<: *tag_filters
516
- requires:
517
- - lint
518
- - redis-four-ruby-two-four:
519
- <<: *tag_filters
520
- requires:
521
- - lint
522
- - redis-four-ruby-two-five:
523
- <<: *tag_filters
524
- requires:
525
- - lint
526
- - redis-four-ruby-two-six:
527
- <<: *tag_filters
528
- requires:
529
- - lint
121
+ - lint:
122
+ filters:
123
+ tags:
124
+ only: /.*/
125
+ - test:
126
+ <<: *test
127
+ filters:
128
+ tags:
129
+ only: /.*/
530
130
  - publish:
531
131
  filters:
532
- tags:
533
- only: /^v.*/
534
- branches:
535
- ignore: /.*/
132
+ tags:
133
+ only: /^v.*/
134
+ branches:
135
+ ignore: /.*/
536
136
  requires:
537
137
  - lint
538
- - aws-two-ruby-two-three
539
- - aws-two-ruby-two-four
540
- - aws-two-ruby-two-five
541
- - aws-two-ruby-two-six
542
- - aws-three-ruby-two-three
543
- - aws-three-ruby-two-four
544
- - aws-three-ruby-two-five
545
- - aws-three-ruby-two-six
546
- - faraday-ruby-two-three
547
- - faraday-ruby-two-four
548
- - faraday-ruby-two-five
549
- - faraday-ruby-two-six
550
- - sequel-four-ruby-two-three
551
- - sequel-four-ruby-two-four
552
- - sequel-four-ruby-two-five
553
- - sequel-four-ruby-two-six
554
- - sequel-five-ruby-two-three
555
- - sequel-five-ruby-two-four
556
- - sequel-five-ruby-two-five
557
- - sequel-five-ruby-two-six
558
- - sinatra-ruby-two-three
559
- - sinatra-ruby-two-four
560
- - sinatra-ruby-two-five
561
- - sinatra-ruby-two-six
562
- - rack-ruby-two-three
563
- - rack-ruby-two-four
564
- - rack-ruby-two-five
565
- - rack-ruby-two-six
566
- - rails-four-one-ruby-two-three
567
- - rails-four-two-ruby-two-three
568
- - rails-four-two-ruby-two-four
569
- - rails-four-two-ruby-two-five
570
- - rails-four-two-ruby-two-six
571
- - rails-five-ruby-two-three
572
- - rails-five-ruby-two-four
573
- - rails-five-ruby-two-five
574
- - rails-five-ruby-two-six
575
- - rails-five-one-ruby-two-three
576
- - rails-five-one-ruby-two-four
577
- - rails-five-one-ruby-two-five
578
- - rails-five-one-ruby-two-six
579
- - rails-five-two-ruby-two-three
580
- - rails-five-two-ruby-two-four
581
- - rails-five-two-ruby-two-five
582
- - rails-five-two-ruby-two-six
583
- - rails-six-ruby-two-five
584
- - rails-six-ruby-two-six
585
- - redis-three-ruby-two-three
586
- - redis-three-ruby-two-four
587
- - redis-three-ruby-two-five
588
- - redis-three-ruby-two-six
589
- - redis-four-ruby-two-three
590
- - redis-four-ruby-two-four
591
- - redis-four-ruby-two-five
592
- - redis-four-ruby-two-six
138
+ - test