saxon-rb 0.6.0-java → 0.8.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/.circleci/config.yml +623 -44
- data/.rspec-jar-loading +2 -0
- data/.ruby-version +1 -1
- data/.yardopts +1 -0
- data/README.md +1 -1
- data/Rakefile +10 -4
- data/docs/templates/plugin.rb +73 -0
- data/lib/saxon-rb.rb +0 -1
- data/lib/saxon/configuration.rb +15 -13
- data/lib/saxon/document_builder.rb +216 -5
- data/lib/saxon/feature_flags.rb +11 -0
- data/lib/saxon/feature_flags/errors.rb +8 -0
- data/lib/saxon/feature_flags/helpers.rb +15 -0
- data/lib/saxon/feature_flags/version.rb +100 -0
- data/lib/saxon/item_type.rb +116 -71
- data/lib/saxon/item_type/lexical_string_conversion.rb +78 -1
- data/lib/saxon/item_type/value_to_ruby.rb +12 -0
- data/lib/saxon/jruby_bug_6197_workaround.rb +5 -0
- data/lib/saxon/loader.rb +56 -43
- data/lib/saxon/processor.rb +6 -4
- data/lib/saxon/s9api.rb +17 -17
- data/lib/saxon/version.rb +7 -1
- data/lib/saxon/version/library.rb +89 -0
- data/lib/saxon/xdm/atomic_value.rb +16 -9
- data/lib/saxon/xdm/node.rb +30 -0
- data/lib/saxon/xpath/compiler.rb +2 -2
- data/lib/saxon/xpath/static_context.rb +6 -1
- data/lib/saxon/xslt/evaluation_context.rb +11 -1
- data/lib/saxon/xslt/executable.rb +14 -2
- data/lib/saxon/xslt/invocation.rb +2 -1
- data/saxon-rb.gemspec +1 -1
- metadata +22 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f64f4275c045d5c04eb96e092b6861b53b37cfaf1adf22b76f09474ed1db90e
|
4
|
+
data.tar.gz: 50323528f2b6cf98f0278d6dd1aab944d9fa519a547a2cca2b004bd204ac1ade
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ed2f83a9018e8fcf2fcd9af3b45d922c0c8ea9b943576139ad3857acf967c317b59b787cb5ba0c7b3134e08addfada7dde7c5ca9b9cbbd6dbbfc836466ff478
|
7
|
+
data.tar.gz: 9bc2b5c0e9464d1586895795a3518dca263435040fb19c2e0bccb86991d7dd6e0cd8db906c2e90fc233c0832ddc795d7d515bb4fd9612c3b60cf3458d4288dbf
|
data/.circleci/config.yml
CHANGED
@@ -24,21 +24,12 @@ jobs:
|
|
24
24
|
name: Bundle Install
|
25
25
|
command: bundle check || bundle install
|
26
26
|
- run:
|
27
|
-
name:
|
28
|
-
command: |
|
29
|
-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
30
|
-
chmod +x ./cc-test-reporter
|
31
|
-
- run:
|
32
|
-
name: Run the tests, and upload coverage data to Code Climate
|
27
|
+
name: Run the tests
|
33
28
|
command: |-
|
34
|
-
./cc-test-reporter before-build
|
35
29
|
mkdir -p /tmp/test-results
|
30
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
31
|
+
rm -rf coverage
|
36
32
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
37
|
-
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-alt-saxon.json"; fi
|
38
|
-
- persist_to_workspace:
|
39
|
-
root: "~/project"
|
40
|
-
paths:
|
41
|
-
- cc-coverage*
|
42
33
|
- store_test_results:
|
43
34
|
path: "/tmp/test-results"
|
44
35
|
- store_artifacts:
|
@@ -58,21 +49,12 @@ jobs:
|
|
58
49
|
name: Bundle Install
|
59
50
|
command: bundle check || bundle install
|
60
51
|
- run:
|
61
|
-
name:
|
62
|
-
command: |
|
63
|
-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
64
|
-
chmod +x ./cc-test-reporter
|
65
|
-
- run:
|
66
|
-
name: Run the tests, and upload coverage data to Code Climate
|
52
|
+
name: Run the tests
|
67
53
|
command: |-
|
68
|
-
./cc-test-reporter before-build
|
69
54
|
mkdir -p /tmp/test-results
|
55
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
56
|
+
rm -rf coverage
|
70
57
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
71
|
-
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage.json"; fi
|
72
|
-
- persist_to_workspace:
|
73
|
-
root: "~/project"
|
74
|
-
paths:
|
75
|
-
- cc-coverage*
|
76
58
|
- store_test_results:
|
77
59
|
path: "/tmp/test-results"
|
78
60
|
- store_artifacts:
|
@@ -104,6 +86,8 @@ jobs:
|
|
104
86
|
name: Run the tests
|
105
87
|
command: |-
|
106
88
|
mkdir -p /tmp/test-results
|
89
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
90
|
+
rm -rf coverage
|
107
91
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
108
92
|
- store_test_results:
|
109
93
|
path: "/tmp/test-results"
|
@@ -127,6 +111,8 @@ jobs:
|
|
127
111
|
name: Run the tests
|
128
112
|
command: |-
|
129
113
|
mkdir -p /tmp/test-results
|
114
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
115
|
+
rm -rf coverage
|
130
116
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
131
117
|
- store_test_results:
|
132
118
|
path: "/tmp/test-results"
|
@@ -159,6 +145,8 @@ jobs:
|
|
159
145
|
name: Run the tests
|
160
146
|
command: |-
|
161
147
|
mkdir -p /tmp/test-results
|
148
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
149
|
+
rm -rf coverage
|
162
150
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
163
151
|
- store_test_results:
|
164
152
|
path: "/tmp/test-results"
|
@@ -182,6 +170,8 @@ jobs:
|
|
182
170
|
name: Run the tests
|
183
171
|
command: |-
|
184
172
|
mkdir -p /tmp/test-results
|
173
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
174
|
+
rm -rf coverage
|
185
175
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
186
176
|
- store_test_results:
|
187
177
|
path: "/tmp/test-results"
|
@@ -214,6 +204,8 @@ jobs:
|
|
214
204
|
name: Run the tests
|
215
205
|
command: |-
|
216
206
|
mkdir -p /tmp/test-results
|
207
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
208
|
+
rm -rf coverage
|
217
209
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
218
210
|
- store_test_results:
|
219
211
|
path: "/tmp/test-results"
|
@@ -237,15 +229,572 @@ jobs:
|
|
237
229
|
name: Run the tests
|
238
230
|
command: |-
|
239
231
|
mkdir -p /tmp/test-results
|
232
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
233
|
+
rm -rf coverage
|
234
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
235
|
+
- store_test_results:
|
236
|
+
path: "/tmp/test-results"
|
237
|
+
- store_artifacts:
|
238
|
+
path: "/tmp/test-results"
|
239
|
+
destination: test-results
|
240
|
+
JRuby 9.2.10.0, JDK 8 Saxon HE 9.8:
|
241
|
+
docker:
|
242
|
+
- image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
|
243
|
+
environment:
|
244
|
+
BUNDLE_JOBS: 3
|
245
|
+
BUNDLE_RETRY: 3
|
246
|
+
BUNDLE_PATH: vendor/bundle
|
247
|
+
JRUBY_OPTS: "--dev --debug"
|
248
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
249
|
+
steps:
|
250
|
+
- checkout
|
251
|
+
- run:
|
252
|
+
name: Download SaxonHE9-8-0-15J.zip
|
253
|
+
command: |-
|
254
|
+
mkdir -p /tmp/saxon
|
255
|
+
cd /tmp/saxon
|
256
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
257
|
+
unzip SaxonHE9-8-0-15J.zip
|
258
|
+
rm -f SaxonHE9-8-0-15J.zip
|
259
|
+
- run:
|
260
|
+
name: Bundle Install
|
261
|
+
command: bundle check || bundle install
|
262
|
+
- run:
|
263
|
+
name: Run the tests
|
264
|
+
command: |-
|
265
|
+
mkdir -p /tmp/test-results
|
266
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
267
|
+
rm -rf coverage
|
268
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
269
|
+
- store_test_results:
|
270
|
+
path: "/tmp/test-results"
|
271
|
+
- store_artifacts:
|
272
|
+
path: "/tmp/test-results"
|
273
|
+
destination: test-results
|
274
|
+
JRuby 9.2.10.0, JDK 8:
|
275
|
+
docker:
|
276
|
+
- image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
|
277
|
+
environment:
|
278
|
+
BUNDLE_JOBS: 3
|
279
|
+
BUNDLE_RETRY: 3
|
280
|
+
BUNDLE_PATH: vendor/bundle
|
281
|
+
JRUBY_OPTS: "--dev --debug"
|
282
|
+
steps:
|
283
|
+
- checkout
|
284
|
+
- run:
|
285
|
+
name: Bundle Install
|
286
|
+
command: bundle check || bundle install
|
287
|
+
- run:
|
288
|
+
name: Run the tests
|
289
|
+
command: |-
|
290
|
+
mkdir -p /tmp/test-results
|
291
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
292
|
+
rm -rf coverage
|
293
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
294
|
+
- store_test_results:
|
295
|
+
path: "/tmp/test-results"
|
296
|
+
- store_artifacts:
|
297
|
+
path: "/tmp/test-results"
|
298
|
+
destination: test-results
|
299
|
+
JRuby 9.2.10.0, JDK 11 Saxon HE 9.8:
|
300
|
+
docker:
|
301
|
+
- image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
|
302
|
+
environment:
|
303
|
+
BUNDLE_JOBS: 3
|
304
|
+
BUNDLE_RETRY: 3
|
305
|
+
BUNDLE_PATH: vendor/bundle
|
306
|
+
JRUBY_OPTS: "--dev --debug"
|
307
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
308
|
+
steps:
|
309
|
+
- checkout
|
310
|
+
- run:
|
311
|
+
name: Download SaxonHE9-8-0-15J.zip
|
312
|
+
command: |-
|
313
|
+
mkdir -p /tmp/saxon
|
314
|
+
cd /tmp/saxon
|
315
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
316
|
+
unzip SaxonHE9-8-0-15J.zip
|
317
|
+
rm -f SaxonHE9-8-0-15J.zip
|
318
|
+
- run:
|
319
|
+
name: Bundle Install
|
320
|
+
command: bundle check || bundle install
|
321
|
+
- run:
|
322
|
+
name: Run the tests
|
323
|
+
command: |-
|
324
|
+
mkdir -p /tmp/test-results
|
325
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
326
|
+
rm -rf coverage
|
327
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
328
|
+
- store_test_results:
|
329
|
+
path: "/tmp/test-results"
|
330
|
+
- store_artifacts:
|
331
|
+
path: "/tmp/test-results"
|
332
|
+
destination: test-results
|
333
|
+
JRuby 9.2.10.0, JDK 11:
|
334
|
+
docker:
|
335
|
+
- image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
|
336
|
+
environment:
|
337
|
+
BUNDLE_JOBS: 3
|
338
|
+
BUNDLE_RETRY: 3
|
339
|
+
BUNDLE_PATH: vendor/bundle
|
340
|
+
JRUBY_OPTS: "--dev --debug"
|
341
|
+
steps:
|
342
|
+
- checkout
|
343
|
+
- run:
|
344
|
+
name: Bundle Install
|
345
|
+
command: bundle check || bundle install
|
346
|
+
- run:
|
347
|
+
name: Run the tests
|
348
|
+
command: |-
|
349
|
+
mkdir -p /tmp/test-results
|
350
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
351
|
+
rm -rf coverage
|
352
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
353
|
+
- store_test_results:
|
354
|
+
path: "/tmp/test-results"
|
355
|
+
- store_artifacts:
|
356
|
+
path: "/tmp/test-results"
|
357
|
+
destination: test-results
|
358
|
+
JRuby 9.2.10.0, JDK 13 Saxon HE 9.8:
|
359
|
+
docker:
|
360
|
+
- image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
|
361
|
+
environment:
|
362
|
+
BUNDLE_JOBS: 3
|
363
|
+
BUNDLE_RETRY: 3
|
364
|
+
BUNDLE_PATH: vendor/bundle
|
365
|
+
JRUBY_OPTS: "--dev --debug"
|
366
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
367
|
+
steps:
|
368
|
+
- checkout
|
369
|
+
- run:
|
370
|
+
name: Download SaxonHE9-8-0-15J.zip
|
371
|
+
command: |-
|
372
|
+
mkdir -p /tmp/saxon
|
373
|
+
cd /tmp/saxon
|
374
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
375
|
+
unzip SaxonHE9-8-0-15J.zip
|
376
|
+
rm -f SaxonHE9-8-0-15J.zip
|
377
|
+
- run:
|
378
|
+
name: Bundle Install
|
379
|
+
command: bundle check || bundle install
|
380
|
+
- run:
|
381
|
+
name: Run the tests
|
382
|
+
command: |-
|
383
|
+
mkdir -p /tmp/test-results
|
384
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
385
|
+
rm -rf coverage
|
386
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
387
|
+
- store_test_results:
|
388
|
+
path: "/tmp/test-results"
|
389
|
+
- store_artifacts:
|
390
|
+
path: "/tmp/test-results"
|
391
|
+
destination: test-results
|
392
|
+
JRuby 9.2.10.0, JDK 13:
|
393
|
+
docker:
|
394
|
+
- image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
|
395
|
+
environment:
|
396
|
+
BUNDLE_JOBS: 3
|
397
|
+
BUNDLE_RETRY: 3
|
398
|
+
BUNDLE_PATH: vendor/bundle
|
399
|
+
JRUBY_OPTS: "--dev --debug"
|
400
|
+
steps:
|
401
|
+
- checkout
|
402
|
+
- run:
|
403
|
+
name: Bundle Install
|
404
|
+
command: bundle check || bundle install
|
405
|
+
- run:
|
406
|
+
name: Run the tests
|
407
|
+
command: |-
|
408
|
+
mkdir -p /tmp/test-results
|
409
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
410
|
+
rm -rf coverage
|
411
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
412
|
+
- store_test_results:
|
413
|
+
path: "/tmp/test-results"
|
414
|
+
- store_artifacts:
|
415
|
+
path: "/tmp/test-results"
|
416
|
+
destination: test-results
|
417
|
+
JRuby 9.2.11.1, JDK 8 Saxon HE 9.8:
|
418
|
+
docker:
|
419
|
+
- image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
|
420
|
+
environment:
|
421
|
+
BUNDLE_JOBS: 3
|
422
|
+
BUNDLE_RETRY: 3
|
423
|
+
BUNDLE_PATH: vendor/bundle
|
424
|
+
JRUBY_OPTS: "--dev --debug"
|
425
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
426
|
+
steps:
|
427
|
+
- checkout
|
428
|
+
- run:
|
429
|
+
name: Download SaxonHE9-8-0-15J.zip
|
430
|
+
command: |-
|
431
|
+
mkdir -p /tmp/saxon
|
432
|
+
cd /tmp/saxon
|
433
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
434
|
+
unzip SaxonHE9-8-0-15J.zip
|
435
|
+
rm -f SaxonHE9-8-0-15J.zip
|
436
|
+
- run:
|
437
|
+
name: Bundle Install
|
438
|
+
command: bundle check || bundle install
|
439
|
+
- run:
|
440
|
+
name: Run the tests
|
441
|
+
command: |-
|
442
|
+
mkdir -p /tmp/test-results
|
443
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
444
|
+
rm -rf coverage
|
445
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
446
|
+
- store_test_results:
|
447
|
+
path: "/tmp/test-results"
|
448
|
+
- store_artifacts:
|
449
|
+
path: "/tmp/test-results"
|
450
|
+
destination: test-results
|
451
|
+
JRuby 9.2.11.1, JDK 8:
|
452
|
+
docker:
|
453
|
+
- image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
|
454
|
+
environment:
|
455
|
+
BUNDLE_JOBS: 3
|
456
|
+
BUNDLE_RETRY: 3
|
457
|
+
BUNDLE_PATH: vendor/bundle
|
458
|
+
JRUBY_OPTS: "--dev --debug"
|
459
|
+
steps:
|
460
|
+
- checkout
|
461
|
+
- run:
|
462
|
+
name: Bundle Install
|
463
|
+
command: bundle check || bundle install
|
464
|
+
- run:
|
465
|
+
name: Run the tests
|
466
|
+
command: |-
|
467
|
+
mkdir -p /tmp/test-results
|
468
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
469
|
+
rm -rf coverage
|
470
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
471
|
+
- store_test_results:
|
472
|
+
path: "/tmp/test-results"
|
473
|
+
- store_artifacts:
|
474
|
+
path: "/tmp/test-results"
|
475
|
+
destination: test-results
|
476
|
+
JRuby 9.2.11.1, JDK 11 Saxon HE 9.8:
|
477
|
+
docker:
|
478
|
+
- image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
|
479
|
+
environment:
|
480
|
+
BUNDLE_JOBS: 3
|
481
|
+
BUNDLE_RETRY: 3
|
482
|
+
BUNDLE_PATH: vendor/bundle
|
483
|
+
JRUBY_OPTS: "--dev --debug"
|
484
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
485
|
+
steps:
|
486
|
+
- checkout
|
487
|
+
- run:
|
488
|
+
name: Download SaxonHE9-8-0-15J.zip
|
489
|
+
command: |-
|
490
|
+
mkdir -p /tmp/saxon
|
491
|
+
cd /tmp/saxon
|
492
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
493
|
+
unzip SaxonHE9-8-0-15J.zip
|
494
|
+
rm -f SaxonHE9-8-0-15J.zip
|
495
|
+
- run:
|
496
|
+
name: Bundle Install
|
497
|
+
command: bundle check || bundle install
|
498
|
+
- run:
|
499
|
+
name: Run the tests
|
500
|
+
command: |-
|
501
|
+
mkdir -p /tmp/test-results
|
502
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
503
|
+
rm -rf coverage
|
504
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
505
|
+
- store_test_results:
|
506
|
+
path: "/tmp/test-results"
|
507
|
+
- store_artifacts:
|
508
|
+
path: "/tmp/test-results"
|
509
|
+
destination: test-results
|
510
|
+
JRuby 9.2.11.1, JDK 11:
|
511
|
+
docker:
|
512
|
+
- image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
|
513
|
+
environment:
|
514
|
+
BUNDLE_JOBS: 3
|
515
|
+
BUNDLE_RETRY: 3
|
516
|
+
BUNDLE_PATH: vendor/bundle
|
517
|
+
JRUBY_OPTS: "--dev --debug"
|
518
|
+
steps:
|
519
|
+
- checkout
|
520
|
+
- run:
|
521
|
+
name: Bundle Install
|
522
|
+
command: bundle check || bundle install
|
523
|
+
- run:
|
524
|
+
name: Run the tests
|
525
|
+
command: |-
|
526
|
+
mkdir -p /tmp/test-results
|
527
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
528
|
+
rm -rf coverage
|
529
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
530
|
+
- store_test_results:
|
531
|
+
path: "/tmp/test-results"
|
532
|
+
- store_artifacts:
|
533
|
+
path: "/tmp/test-results"
|
534
|
+
destination: test-results
|
535
|
+
JRuby 9.2.11.1, JDK 13 Saxon HE 9.8:
|
536
|
+
docker:
|
537
|
+
- image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
|
538
|
+
environment:
|
539
|
+
BUNDLE_JOBS: 3
|
540
|
+
BUNDLE_RETRY: 3
|
541
|
+
BUNDLE_PATH: vendor/bundle
|
542
|
+
JRUBY_OPTS: "--dev --debug"
|
543
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
544
|
+
steps:
|
545
|
+
- checkout
|
546
|
+
- run:
|
547
|
+
name: Download SaxonHE9-8-0-15J.zip
|
548
|
+
command: |-
|
549
|
+
mkdir -p /tmp/saxon
|
550
|
+
cd /tmp/saxon
|
551
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
552
|
+
unzip SaxonHE9-8-0-15J.zip
|
553
|
+
rm -f SaxonHE9-8-0-15J.zip
|
554
|
+
- run:
|
555
|
+
name: Bundle Install
|
556
|
+
command: bundle check || bundle install
|
557
|
+
- run:
|
558
|
+
name: Run the tests
|
559
|
+
command: |-
|
560
|
+
mkdir -p /tmp/test-results
|
561
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
562
|
+
rm -rf coverage
|
563
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
564
|
+
- store_test_results:
|
565
|
+
path: "/tmp/test-results"
|
566
|
+
- store_artifacts:
|
567
|
+
path: "/tmp/test-results"
|
568
|
+
destination: test-results
|
569
|
+
JRuby 9.2.11.1, JDK 13:
|
570
|
+
docker:
|
571
|
+
- image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
|
572
|
+
environment:
|
573
|
+
BUNDLE_JOBS: 3
|
574
|
+
BUNDLE_RETRY: 3
|
575
|
+
BUNDLE_PATH: vendor/bundle
|
576
|
+
JRUBY_OPTS: "--dev --debug"
|
577
|
+
steps:
|
578
|
+
- checkout
|
579
|
+
- run:
|
580
|
+
name: Bundle Install
|
581
|
+
command: bundle check || bundle install
|
582
|
+
- run:
|
583
|
+
name: Run the tests
|
584
|
+
command: |-
|
585
|
+
mkdir -p /tmp/test-results
|
586
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
587
|
+
rm -rf coverage
|
588
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
589
|
+
- store_test_results:
|
590
|
+
path: "/tmp/test-results"
|
591
|
+
- store_artifacts:
|
592
|
+
path: "/tmp/test-results"
|
593
|
+
destination: test-results
|
594
|
+
JRuby 9.2.12.0, JDK 8 Saxon HE 9.8:
|
595
|
+
docker:
|
596
|
+
- image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
|
597
|
+
environment:
|
598
|
+
BUNDLE_JOBS: 3
|
599
|
+
BUNDLE_RETRY: 3
|
600
|
+
BUNDLE_PATH: vendor/bundle
|
601
|
+
JRUBY_OPTS: "--dev --debug"
|
602
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
603
|
+
steps:
|
604
|
+
- checkout
|
605
|
+
- run:
|
606
|
+
name: Download SaxonHE9-8-0-15J.zip
|
607
|
+
command: |-
|
608
|
+
mkdir -p /tmp/saxon
|
609
|
+
cd /tmp/saxon
|
610
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
611
|
+
unzip SaxonHE9-8-0-15J.zip
|
612
|
+
rm -f SaxonHE9-8-0-15J.zip
|
613
|
+
- run:
|
614
|
+
name: Bundle Install
|
615
|
+
command: bundle check || bundle install
|
616
|
+
- run:
|
617
|
+
name: Install Code Climate Test Reporter
|
618
|
+
command: |
|
619
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
620
|
+
chmod +x ./cc-test-reporter
|
621
|
+
- run:
|
622
|
+
name: Run the tests, and upload coverage data to Code Climate
|
623
|
+
command: |-
|
624
|
+
./cc-test-reporter before-build
|
625
|
+
mkdir -p /tmp/test-results
|
626
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
627
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading-alt-saxon.json"; fi
|
628
|
+
rm -rf coverage
|
629
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
630
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main-alt-saxon.json"; fi
|
631
|
+
- persist_to_workspace:
|
632
|
+
root: "~/project"
|
633
|
+
paths:
|
634
|
+
- cc-coverage*
|
635
|
+
- store_test_results:
|
636
|
+
path: "/tmp/test-results"
|
637
|
+
- store_artifacts:
|
638
|
+
path: "/tmp/test-results"
|
639
|
+
destination: test-results
|
640
|
+
JRuby 9.2.12.0, JDK 8:
|
641
|
+
docker:
|
642
|
+
- image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
|
643
|
+
environment:
|
644
|
+
BUNDLE_JOBS: 3
|
645
|
+
BUNDLE_RETRY: 3
|
646
|
+
BUNDLE_PATH: vendor/bundle
|
647
|
+
JRUBY_OPTS: "--dev --debug"
|
648
|
+
steps:
|
649
|
+
- checkout
|
650
|
+
- run:
|
651
|
+
name: Bundle Install
|
652
|
+
command: bundle check || bundle install
|
653
|
+
- run:
|
654
|
+
name: Install Code Climate Test Reporter
|
655
|
+
command: |
|
656
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
657
|
+
chmod +x ./cc-test-reporter
|
658
|
+
- run:
|
659
|
+
name: Run the tests, and upload coverage data to Code Climate
|
660
|
+
command: |-
|
661
|
+
./cc-test-reporter before-build
|
662
|
+
mkdir -p /tmp/test-results
|
663
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
664
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading.json"; fi
|
665
|
+
rm -rf coverage
|
666
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
667
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main.json"; fi
|
668
|
+
- persist_to_workspace:
|
669
|
+
root: "~/project"
|
670
|
+
paths:
|
671
|
+
- cc-coverage*
|
672
|
+
- store_test_results:
|
673
|
+
path: "/tmp/test-results"
|
674
|
+
- store_artifacts:
|
675
|
+
path: "/tmp/test-results"
|
676
|
+
destination: test-results
|
677
|
+
JRuby 9.2.12.0, JDK 11 Saxon HE 9.8:
|
678
|
+
docker:
|
679
|
+
- image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
|
680
|
+
environment:
|
681
|
+
BUNDLE_JOBS: 3
|
682
|
+
BUNDLE_RETRY: 3
|
683
|
+
BUNDLE_PATH: vendor/bundle
|
684
|
+
JRUBY_OPTS: "--dev --debug"
|
685
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
686
|
+
steps:
|
687
|
+
- checkout
|
688
|
+
- run:
|
689
|
+
name: Download SaxonHE9-8-0-15J.zip
|
690
|
+
command: |-
|
691
|
+
mkdir -p /tmp/saxon
|
692
|
+
cd /tmp/saxon
|
693
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
694
|
+
unzip SaxonHE9-8-0-15J.zip
|
695
|
+
rm -f SaxonHE9-8-0-15J.zip
|
696
|
+
- run:
|
697
|
+
name: Bundle Install
|
698
|
+
command: bundle check || bundle install
|
699
|
+
- run:
|
700
|
+
name: Run the tests
|
701
|
+
command: |-
|
702
|
+
mkdir -p /tmp/test-results
|
703
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
704
|
+
rm -rf coverage
|
705
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
706
|
+
- store_test_results:
|
707
|
+
path: "/tmp/test-results"
|
708
|
+
- store_artifacts:
|
709
|
+
path: "/tmp/test-results"
|
710
|
+
destination: test-results
|
711
|
+
JRuby 9.2.12.0, JDK 11:
|
712
|
+
docker:
|
713
|
+
- image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
|
714
|
+
environment:
|
715
|
+
BUNDLE_JOBS: 3
|
716
|
+
BUNDLE_RETRY: 3
|
717
|
+
BUNDLE_PATH: vendor/bundle
|
718
|
+
JRUBY_OPTS: "--dev --debug"
|
719
|
+
steps:
|
720
|
+
- checkout
|
721
|
+
- run:
|
722
|
+
name: Bundle Install
|
723
|
+
command: bundle check || bundle install
|
724
|
+
- run:
|
725
|
+
name: Run the tests
|
726
|
+
command: |-
|
727
|
+
mkdir -p /tmp/test-results
|
728
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
729
|
+
rm -rf coverage
|
730
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
731
|
+
- store_test_results:
|
732
|
+
path: "/tmp/test-results"
|
733
|
+
- store_artifacts:
|
734
|
+
path: "/tmp/test-results"
|
735
|
+
destination: test-results
|
736
|
+
JRuby 9.2.12.0, JDK 13 Saxon HE 9.8:
|
737
|
+
docker:
|
738
|
+
- image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
|
739
|
+
environment:
|
740
|
+
BUNDLE_JOBS: 3
|
741
|
+
BUNDLE_RETRY: 3
|
742
|
+
BUNDLE_PATH: vendor/bundle
|
743
|
+
JRUBY_OPTS: "--dev --debug"
|
744
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
745
|
+
steps:
|
746
|
+
- checkout
|
747
|
+
- run:
|
748
|
+
name: Download SaxonHE9-8-0-15J.zip
|
749
|
+
command: |-
|
750
|
+
mkdir -p /tmp/saxon
|
751
|
+
cd /tmp/saxon
|
752
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
753
|
+
unzip SaxonHE9-8-0-15J.zip
|
754
|
+
rm -f SaxonHE9-8-0-15J.zip
|
755
|
+
- run:
|
756
|
+
name: Bundle Install
|
757
|
+
command: bundle check || bundle install
|
758
|
+
- run:
|
759
|
+
name: Run the tests
|
760
|
+
command: |-
|
761
|
+
mkdir -p /tmp/test-results
|
762
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
763
|
+
rm -rf coverage
|
764
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
765
|
+
- store_test_results:
|
766
|
+
path: "/tmp/test-results"
|
767
|
+
- store_artifacts:
|
768
|
+
path: "/tmp/test-results"
|
769
|
+
destination: test-results
|
770
|
+
JRuby 9.2.12.0, JDK 13:
|
771
|
+
docker:
|
772
|
+
- image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
|
773
|
+
environment:
|
774
|
+
BUNDLE_JOBS: 3
|
775
|
+
BUNDLE_RETRY: 3
|
776
|
+
BUNDLE_PATH: vendor/bundle
|
777
|
+
JRUBY_OPTS: "--dev --debug"
|
778
|
+
steps:
|
779
|
+
- checkout
|
780
|
+
- run:
|
781
|
+
name: Bundle Install
|
782
|
+
command: bundle check || bundle install
|
783
|
+
- run:
|
784
|
+
name: Run the tests
|
785
|
+
command: |-
|
786
|
+
mkdir -p /tmp/test-results
|
787
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
788
|
+
rm -rf coverage
|
240
789
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
241
790
|
- store_test_results:
|
242
791
|
path: "/tmp/test-results"
|
243
792
|
- store_artifacts:
|
244
793
|
path: "/tmp/test-results"
|
245
794
|
destination: test-results
|
246
|
-
JRuby 9.2.
|
795
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 Saxon HE 9.8:
|
247
796
|
docker:
|
248
|
-
- image: fidothe/circleci:jruby-9.2.
|
797
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
|
249
798
|
environment:
|
250
799
|
BUNDLE_JOBS: 3
|
251
800
|
BUNDLE_RETRY: 3
|
@@ -269,15 +818,17 @@ jobs:
|
|
269
818
|
name: Run the tests
|
270
819
|
command: |-
|
271
820
|
mkdir -p /tmp/test-results
|
821
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
822
|
+
rm -rf coverage
|
272
823
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
273
824
|
- store_test_results:
|
274
825
|
path: "/tmp/test-results"
|
275
826
|
- store_artifacts:
|
276
827
|
path: "/tmp/test-results"
|
277
828
|
destination: test-results
|
278
|
-
JRuby 9.2.
|
829
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8:
|
279
830
|
docker:
|
280
|
-
- image: fidothe/circleci:jruby-9.2.
|
831
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
|
281
832
|
environment:
|
282
833
|
BUNDLE_JOBS: 3
|
283
834
|
BUNDLE_RETRY: 3
|
@@ -292,15 +843,17 @@ jobs:
|
|
292
843
|
name: Run the tests
|
293
844
|
command: |-
|
294
845
|
mkdir -p /tmp/test-results
|
846
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
847
|
+
rm -rf coverage
|
295
848
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
296
849
|
- store_test_results:
|
297
850
|
path: "/tmp/test-results"
|
298
851
|
- store_artifacts:
|
299
852
|
path: "/tmp/test-results"
|
300
853
|
destination: test-results
|
301
|
-
JRuby 9.2.
|
854
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 Saxon HE 9.8:
|
302
855
|
docker:
|
303
|
-
- image: fidothe/circleci:jruby-9.2.
|
856
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
|
304
857
|
environment:
|
305
858
|
BUNDLE_JOBS: 3
|
306
859
|
BUNDLE_RETRY: 3
|
@@ -324,15 +877,17 @@ jobs:
|
|
324
877
|
name: Run the tests
|
325
878
|
command: |-
|
326
879
|
mkdir -p /tmp/test-results
|
880
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
881
|
+
rm -rf coverage
|
327
882
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
328
883
|
- store_test_results:
|
329
884
|
path: "/tmp/test-results"
|
330
885
|
- store_artifacts:
|
331
886
|
path: "/tmp/test-results"
|
332
887
|
destination: test-results
|
333
|
-
JRuby 9.2.
|
888
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11:
|
334
889
|
docker:
|
335
|
-
- image: fidothe/circleci:jruby-9.2.
|
890
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
|
336
891
|
environment:
|
337
892
|
BUNDLE_JOBS: 3
|
338
893
|
BUNDLE_RETRY: 3
|
@@ -347,15 +902,17 @@ jobs:
|
|
347
902
|
name: Run the tests
|
348
903
|
command: |-
|
349
904
|
mkdir -p /tmp/test-results
|
905
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
906
|
+
rm -rf coverage
|
350
907
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
351
908
|
- store_test_results:
|
352
909
|
path: "/tmp/test-results"
|
353
910
|
- store_artifacts:
|
354
911
|
path: "/tmp/test-results"
|
355
912
|
destination: test-results
|
356
|
-
JRuby 9.2.
|
913
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 Saxon HE 9.8:
|
357
914
|
docker:
|
358
|
-
- image: fidothe/circleci:jruby-9.2.
|
915
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
|
359
916
|
environment:
|
360
917
|
BUNDLE_JOBS: 3
|
361
918
|
BUNDLE_RETRY: 3
|
@@ -379,15 +936,17 @@ jobs:
|
|
379
936
|
name: Run the tests
|
380
937
|
command: |-
|
381
938
|
mkdir -p /tmp/test-results
|
939
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
940
|
+
rm -rf coverage
|
382
941
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
383
942
|
- store_test_results:
|
384
943
|
path: "/tmp/test-results"
|
385
944
|
- store_artifacts:
|
386
945
|
path: "/tmp/test-results"
|
387
946
|
destination: test-results
|
388
|
-
JRuby 9.2.
|
947
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13:
|
389
948
|
docker:
|
390
|
-
- image: fidothe/circleci:jruby-9.2.
|
949
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
|
391
950
|
environment:
|
392
951
|
BUNDLE_JOBS: 3
|
393
952
|
BUNDLE_RETRY: 3
|
@@ -402,6 +961,8 @@ jobs:
|
|
402
961
|
name: Run the tests
|
403
962
|
command: |-
|
404
963
|
mkdir -p /tmp/test-results
|
964
|
+
VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
|
965
|
+
rm -rf coverage
|
405
966
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
406
967
|
- store_test_results:
|
407
968
|
path: "/tmp/test-results"
|
@@ -437,13 +998,31 @@ workflows:
|
|
437
998
|
- JRuby 9.2.9.0, JDK 13
|
438
999
|
- JRuby 9.1.17.0, JDK 8 Saxon HE 9.8
|
439
1000
|
- JRuby 9.1.17.0, JDK 8
|
440
|
-
- JRuby 9.2.10.0
|
441
|
-
- JRuby 9.2.10.0
|
442
|
-
- JRuby 9.2.10.0
|
443
|
-
- JRuby 9.2.10.0
|
444
|
-
- JRuby 9.2.10.0
|
445
|
-
- JRuby 9.2.10.0
|
1001
|
+
- JRuby 9.2.10.0, JDK 8 Saxon HE 9.8
|
1002
|
+
- JRuby 9.2.10.0, JDK 8
|
1003
|
+
- JRuby 9.2.10.0, JDK 11 Saxon HE 9.8
|
1004
|
+
- JRuby 9.2.10.0, JDK 11
|
1005
|
+
- JRuby 9.2.10.0, JDK 13 Saxon HE 9.8
|
1006
|
+
- JRuby 9.2.10.0, JDK 13
|
1007
|
+
- JRuby 9.2.11.1, JDK 8 Saxon HE 9.8
|
1008
|
+
- JRuby 9.2.11.1, JDK 8
|
1009
|
+
- JRuby 9.2.11.1, JDK 11 Saxon HE 9.8
|
1010
|
+
- JRuby 9.2.11.1, JDK 11
|
1011
|
+
- JRuby 9.2.11.1, JDK 13 Saxon HE 9.8
|
1012
|
+
- JRuby 9.2.11.1, JDK 13
|
1013
|
+
- JRuby 9.2.12.0, JDK 8 Saxon HE 9.8
|
1014
|
+
- JRuby 9.2.12.0, JDK 8
|
1015
|
+
- JRuby 9.2.12.0, JDK 11 Saxon HE 9.8
|
1016
|
+
- JRuby 9.2.12.0, JDK 11
|
1017
|
+
- JRuby 9.2.12.0, JDK 13 Saxon HE 9.8
|
1018
|
+
- JRuby 9.2.12.0, JDK 13
|
1019
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 Saxon HE 9.8
|
1020
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8
|
1021
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 Saxon HE 9.8
|
1022
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11
|
1023
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 Saxon HE 9.8
|
1024
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13
|
446
1025
|
- Report test coverage to Code Climate:
|
447
1026
|
requires:
|
448
|
-
- JRuby 9.2.
|
449
|
-
- JRuby 9.2.
|
1027
|
+
- JRuby 9.2.12.0, JDK 8 Saxon HE 9.8
|
1028
|
+
- JRuby 9.2.12.0, JDK 8
|