saxon-rb 0.8.2-java → 0.8.3-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 +608 -35
- data/Rakefile +5 -3
- data/lib/saxon/loader.rb +3 -1
- data/lib/saxon/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61b37824444c253e2f7b844bb700cae4cea58e82d968a7d34cc4940fca10faa5
|
|
4
|
+
data.tar.gz: 41cf3d89cc9d42e6272de139f67761106d4c2fde95a0cd72e84c8d4ebcb7b70c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afa63497c6fd346090b09d3417a118e57ea92b746c7b292aee9ad354bd30a613d572a679fd8c1311af6faca2851074451ac0814a460be261628c5d4784752a4b
|
|
7
|
+
data.tar.gz: 7e4840da4e184daba50577296447212252e1e78701dacde6d1708389de0b68bae7e8450a2394c6e4d2356b3573bf69a5bce10a21406b3fdbe9dddd4a9e98be6d
|
data/.circleci/config.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
version: 2
|
|
3
3
|
jobs:
|
|
4
|
-
JRuby 9.2.9.0, JDK 8
|
|
4
|
+
JRuby 9.2.9.0, JDK 8 saxon-he-9.8:
|
|
5
5
|
docker:
|
|
6
6
|
- image: fidothe/circleci:jruby-9.2.9.0-8-jdk-slim
|
|
7
7
|
environment:
|
|
@@ -35,6 +35,40 @@ jobs:
|
|
|
35
35
|
- store_artifacts:
|
|
36
36
|
path: "/tmp/test-results"
|
|
37
37
|
destination: test-results
|
|
38
|
+
JRuby 9.2.9.0, JDK 8 saxon-he-10.2:
|
|
39
|
+
docker:
|
|
40
|
+
- image: fidothe/circleci:jruby-9.2.9.0-8-jdk-slim
|
|
41
|
+
environment:
|
|
42
|
+
BUNDLE_JOBS: 3
|
|
43
|
+
BUNDLE_RETRY: 3
|
|
44
|
+
BUNDLE_PATH: vendor/bundle
|
|
45
|
+
JRUBY_OPTS: "--dev --debug"
|
|
46
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
47
|
+
steps:
|
|
48
|
+
- checkout
|
|
49
|
+
- run:
|
|
50
|
+
name: Download SaxonHE10-2J.zip
|
|
51
|
+
command: |-
|
|
52
|
+
mkdir -p /tmp/saxon
|
|
53
|
+
cd /tmp/saxon
|
|
54
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
55
|
+
unzip SaxonHE10-2J.zip
|
|
56
|
+
rm -f SaxonHE10-2J.zip
|
|
57
|
+
- run:
|
|
58
|
+
name: Bundle Install
|
|
59
|
+
command: bundle check || bundle install
|
|
60
|
+
- run:
|
|
61
|
+
name: Run the tests
|
|
62
|
+
command: |-
|
|
63
|
+
mkdir -p /tmp/test-results
|
|
64
|
+
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
|
|
65
|
+
rm -rf coverage
|
|
66
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
67
|
+
- store_test_results:
|
|
68
|
+
path: "/tmp/test-results"
|
|
69
|
+
- store_artifacts:
|
|
70
|
+
path: "/tmp/test-results"
|
|
71
|
+
destination: test-results
|
|
38
72
|
JRuby 9.2.9.0, JDK 8:
|
|
39
73
|
docker:
|
|
40
74
|
- image: fidothe/circleci:jruby-9.2.9.0-8-jdk-slim
|
|
@@ -60,7 +94,7 @@ jobs:
|
|
|
60
94
|
- store_artifacts:
|
|
61
95
|
path: "/tmp/test-results"
|
|
62
96
|
destination: test-results
|
|
63
|
-
JRuby 9.2.9.0, JDK 11
|
|
97
|
+
JRuby 9.2.9.0, JDK 11 saxon-he-9.8:
|
|
64
98
|
docker:
|
|
65
99
|
- image: fidothe/circleci:jruby-9.2.9.0-11-jdk-slim
|
|
66
100
|
environment:
|
|
@@ -94,6 +128,40 @@ jobs:
|
|
|
94
128
|
- store_artifacts:
|
|
95
129
|
path: "/tmp/test-results"
|
|
96
130
|
destination: test-results
|
|
131
|
+
JRuby 9.2.9.0, JDK 11 saxon-he-10.2:
|
|
132
|
+
docker:
|
|
133
|
+
- image: fidothe/circleci:jruby-9.2.9.0-11-jdk-slim
|
|
134
|
+
environment:
|
|
135
|
+
BUNDLE_JOBS: 3
|
|
136
|
+
BUNDLE_RETRY: 3
|
|
137
|
+
BUNDLE_PATH: vendor/bundle
|
|
138
|
+
JRUBY_OPTS: "--dev --debug"
|
|
139
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
140
|
+
steps:
|
|
141
|
+
- checkout
|
|
142
|
+
- run:
|
|
143
|
+
name: Download SaxonHE10-2J.zip
|
|
144
|
+
command: |-
|
|
145
|
+
mkdir -p /tmp/saxon
|
|
146
|
+
cd /tmp/saxon
|
|
147
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
148
|
+
unzip SaxonHE10-2J.zip
|
|
149
|
+
rm -f SaxonHE10-2J.zip
|
|
150
|
+
- run:
|
|
151
|
+
name: Bundle Install
|
|
152
|
+
command: bundle check || bundle install
|
|
153
|
+
- run:
|
|
154
|
+
name: Run the tests
|
|
155
|
+
command: |-
|
|
156
|
+
mkdir -p /tmp/test-results
|
|
157
|
+
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
|
|
158
|
+
rm -rf coverage
|
|
159
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
160
|
+
- store_test_results:
|
|
161
|
+
path: "/tmp/test-results"
|
|
162
|
+
- store_artifacts:
|
|
163
|
+
path: "/tmp/test-results"
|
|
164
|
+
destination: test-results
|
|
97
165
|
JRuby 9.2.9.0, JDK 11:
|
|
98
166
|
docker:
|
|
99
167
|
- image: fidothe/circleci:jruby-9.2.9.0-11-jdk-slim
|
|
@@ -119,7 +187,7 @@ jobs:
|
|
|
119
187
|
- store_artifacts:
|
|
120
188
|
path: "/tmp/test-results"
|
|
121
189
|
destination: test-results
|
|
122
|
-
JRuby 9.2.9.0, JDK 13
|
|
190
|
+
JRuby 9.2.9.0, JDK 13 saxon-he-9.8:
|
|
123
191
|
docker:
|
|
124
192
|
- image: fidothe/circleci:jruby-9.2.9.0-13-jdk-slim
|
|
125
193
|
environment:
|
|
@@ -153,6 +221,40 @@ jobs:
|
|
|
153
221
|
- store_artifacts:
|
|
154
222
|
path: "/tmp/test-results"
|
|
155
223
|
destination: test-results
|
|
224
|
+
JRuby 9.2.9.0, JDK 13 saxon-he-10.2:
|
|
225
|
+
docker:
|
|
226
|
+
- image: fidothe/circleci:jruby-9.2.9.0-13-jdk-slim
|
|
227
|
+
environment:
|
|
228
|
+
BUNDLE_JOBS: 3
|
|
229
|
+
BUNDLE_RETRY: 3
|
|
230
|
+
BUNDLE_PATH: vendor/bundle
|
|
231
|
+
JRUBY_OPTS: "--dev --debug"
|
|
232
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
233
|
+
steps:
|
|
234
|
+
- checkout
|
|
235
|
+
- run:
|
|
236
|
+
name: Download SaxonHE10-2J.zip
|
|
237
|
+
command: |-
|
|
238
|
+
mkdir -p /tmp/saxon
|
|
239
|
+
cd /tmp/saxon
|
|
240
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
241
|
+
unzip SaxonHE10-2J.zip
|
|
242
|
+
rm -f SaxonHE10-2J.zip
|
|
243
|
+
- run:
|
|
244
|
+
name: Bundle Install
|
|
245
|
+
command: bundle check || bundle install
|
|
246
|
+
- run:
|
|
247
|
+
name: Run the tests
|
|
248
|
+
command: |-
|
|
249
|
+
mkdir -p /tmp/test-results
|
|
250
|
+
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
|
|
251
|
+
rm -rf coverage
|
|
252
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
253
|
+
- store_test_results:
|
|
254
|
+
path: "/tmp/test-results"
|
|
255
|
+
- store_artifacts:
|
|
256
|
+
path: "/tmp/test-results"
|
|
257
|
+
destination: test-results
|
|
156
258
|
JRuby 9.2.9.0, JDK 13:
|
|
157
259
|
docker:
|
|
158
260
|
- image: fidothe/circleci:jruby-9.2.9.0-13-jdk-slim
|
|
@@ -178,7 +280,7 @@ jobs:
|
|
|
178
280
|
- store_artifacts:
|
|
179
281
|
path: "/tmp/test-results"
|
|
180
282
|
destination: test-results
|
|
181
|
-
JRuby 9.1.17.0, JDK 8
|
|
283
|
+
JRuby 9.1.17.0, JDK 8 saxon-he-9.8:
|
|
182
284
|
docker:
|
|
183
285
|
- image: fidothe/circleci:jruby-9.1.17.0-8-jdk-slim
|
|
184
286
|
environment:
|
|
@@ -212,6 +314,40 @@ jobs:
|
|
|
212
314
|
- store_artifacts:
|
|
213
315
|
path: "/tmp/test-results"
|
|
214
316
|
destination: test-results
|
|
317
|
+
JRuby 9.1.17.0, JDK 8 saxon-he-10.2:
|
|
318
|
+
docker:
|
|
319
|
+
- image: fidothe/circleci:jruby-9.1.17.0-8-jdk-slim
|
|
320
|
+
environment:
|
|
321
|
+
BUNDLE_JOBS: 3
|
|
322
|
+
BUNDLE_RETRY: 3
|
|
323
|
+
BUNDLE_PATH: vendor/bundle
|
|
324
|
+
JRUBY_OPTS: "--dev --debug"
|
|
325
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
326
|
+
steps:
|
|
327
|
+
- checkout
|
|
328
|
+
- run:
|
|
329
|
+
name: Download SaxonHE10-2J.zip
|
|
330
|
+
command: |-
|
|
331
|
+
mkdir -p /tmp/saxon
|
|
332
|
+
cd /tmp/saxon
|
|
333
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
334
|
+
unzip SaxonHE10-2J.zip
|
|
335
|
+
rm -f SaxonHE10-2J.zip
|
|
336
|
+
- run:
|
|
337
|
+
name: Bundle Install
|
|
338
|
+
command: bundle check || bundle install
|
|
339
|
+
- run:
|
|
340
|
+
name: Run the tests
|
|
341
|
+
command: |-
|
|
342
|
+
mkdir -p /tmp/test-results
|
|
343
|
+
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
|
|
344
|
+
rm -rf coverage
|
|
345
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
346
|
+
- store_test_results:
|
|
347
|
+
path: "/tmp/test-results"
|
|
348
|
+
- store_artifacts:
|
|
349
|
+
path: "/tmp/test-results"
|
|
350
|
+
destination: test-results
|
|
215
351
|
JRuby 9.1.17.0, JDK 8:
|
|
216
352
|
docker:
|
|
217
353
|
- image: fidothe/circleci:jruby-9.1.17.0-8-jdk-slim
|
|
@@ -237,7 +373,7 @@ jobs:
|
|
|
237
373
|
- store_artifacts:
|
|
238
374
|
path: "/tmp/test-results"
|
|
239
375
|
destination: test-results
|
|
240
|
-
JRuby 9.2.10.0, JDK 8
|
|
376
|
+
JRuby 9.2.10.0, JDK 8 saxon-he-9.8:
|
|
241
377
|
docker:
|
|
242
378
|
- image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
|
|
243
379
|
environment:
|
|
@@ -271,6 +407,40 @@ jobs:
|
|
|
271
407
|
- store_artifacts:
|
|
272
408
|
path: "/tmp/test-results"
|
|
273
409
|
destination: test-results
|
|
410
|
+
JRuby 9.2.10.0, JDK 8 saxon-he-10.2:
|
|
411
|
+
docker:
|
|
412
|
+
- image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
|
|
413
|
+
environment:
|
|
414
|
+
BUNDLE_JOBS: 3
|
|
415
|
+
BUNDLE_RETRY: 3
|
|
416
|
+
BUNDLE_PATH: vendor/bundle
|
|
417
|
+
JRUBY_OPTS: "--dev --debug"
|
|
418
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
419
|
+
steps:
|
|
420
|
+
- checkout
|
|
421
|
+
- run:
|
|
422
|
+
name: Download SaxonHE10-2J.zip
|
|
423
|
+
command: |-
|
|
424
|
+
mkdir -p /tmp/saxon
|
|
425
|
+
cd /tmp/saxon
|
|
426
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
427
|
+
unzip SaxonHE10-2J.zip
|
|
428
|
+
rm -f SaxonHE10-2J.zip
|
|
429
|
+
- run:
|
|
430
|
+
name: Bundle Install
|
|
431
|
+
command: bundle check || bundle install
|
|
432
|
+
- run:
|
|
433
|
+
name: Run the tests
|
|
434
|
+
command: |-
|
|
435
|
+
mkdir -p /tmp/test-results
|
|
436
|
+
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
|
|
437
|
+
rm -rf coverage
|
|
438
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
439
|
+
- store_test_results:
|
|
440
|
+
path: "/tmp/test-results"
|
|
441
|
+
- store_artifacts:
|
|
442
|
+
path: "/tmp/test-results"
|
|
443
|
+
destination: test-results
|
|
274
444
|
JRuby 9.2.10.0, JDK 8:
|
|
275
445
|
docker:
|
|
276
446
|
- image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
|
|
@@ -296,7 +466,7 @@ jobs:
|
|
|
296
466
|
- store_artifacts:
|
|
297
467
|
path: "/tmp/test-results"
|
|
298
468
|
destination: test-results
|
|
299
|
-
JRuby 9.2.10.0, JDK 11
|
|
469
|
+
JRuby 9.2.10.0, JDK 11 saxon-he-9.8:
|
|
300
470
|
docker:
|
|
301
471
|
- image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
|
|
302
472
|
environment:
|
|
@@ -330,6 +500,40 @@ jobs:
|
|
|
330
500
|
- store_artifacts:
|
|
331
501
|
path: "/tmp/test-results"
|
|
332
502
|
destination: test-results
|
|
503
|
+
JRuby 9.2.10.0, JDK 11 saxon-he-10.2:
|
|
504
|
+
docker:
|
|
505
|
+
- image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
|
|
506
|
+
environment:
|
|
507
|
+
BUNDLE_JOBS: 3
|
|
508
|
+
BUNDLE_RETRY: 3
|
|
509
|
+
BUNDLE_PATH: vendor/bundle
|
|
510
|
+
JRUBY_OPTS: "--dev --debug"
|
|
511
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
512
|
+
steps:
|
|
513
|
+
- checkout
|
|
514
|
+
- run:
|
|
515
|
+
name: Download SaxonHE10-2J.zip
|
|
516
|
+
command: |-
|
|
517
|
+
mkdir -p /tmp/saxon
|
|
518
|
+
cd /tmp/saxon
|
|
519
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
520
|
+
unzip SaxonHE10-2J.zip
|
|
521
|
+
rm -f SaxonHE10-2J.zip
|
|
522
|
+
- run:
|
|
523
|
+
name: Bundle Install
|
|
524
|
+
command: bundle check || bundle install
|
|
525
|
+
- run:
|
|
526
|
+
name: Run the tests
|
|
527
|
+
command: |-
|
|
528
|
+
mkdir -p /tmp/test-results
|
|
529
|
+
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
|
|
530
|
+
rm -rf coverage
|
|
531
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
532
|
+
- store_test_results:
|
|
533
|
+
path: "/tmp/test-results"
|
|
534
|
+
- store_artifacts:
|
|
535
|
+
path: "/tmp/test-results"
|
|
536
|
+
destination: test-results
|
|
333
537
|
JRuby 9.2.10.0, JDK 11:
|
|
334
538
|
docker:
|
|
335
539
|
- image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
|
|
@@ -355,7 +559,7 @@ jobs:
|
|
|
355
559
|
- store_artifacts:
|
|
356
560
|
path: "/tmp/test-results"
|
|
357
561
|
destination: test-results
|
|
358
|
-
JRuby 9.2.10.0, JDK 13
|
|
562
|
+
JRuby 9.2.10.0, JDK 13 saxon-he-9.8:
|
|
359
563
|
docker:
|
|
360
564
|
- image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
|
|
361
565
|
environment:
|
|
@@ -389,6 +593,40 @@ jobs:
|
|
|
389
593
|
- store_artifacts:
|
|
390
594
|
path: "/tmp/test-results"
|
|
391
595
|
destination: test-results
|
|
596
|
+
JRuby 9.2.10.0, JDK 13 saxon-he-10.2:
|
|
597
|
+
docker:
|
|
598
|
+
- image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
|
|
599
|
+
environment:
|
|
600
|
+
BUNDLE_JOBS: 3
|
|
601
|
+
BUNDLE_RETRY: 3
|
|
602
|
+
BUNDLE_PATH: vendor/bundle
|
|
603
|
+
JRUBY_OPTS: "--dev --debug"
|
|
604
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
605
|
+
steps:
|
|
606
|
+
- checkout
|
|
607
|
+
- run:
|
|
608
|
+
name: Download SaxonHE10-2J.zip
|
|
609
|
+
command: |-
|
|
610
|
+
mkdir -p /tmp/saxon
|
|
611
|
+
cd /tmp/saxon
|
|
612
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
613
|
+
unzip SaxonHE10-2J.zip
|
|
614
|
+
rm -f SaxonHE10-2J.zip
|
|
615
|
+
- run:
|
|
616
|
+
name: Bundle Install
|
|
617
|
+
command: bundle check || bundle install
|
|
618
|
+
- run:
|
|
619
|
+
name: Run the tests
|
|
620
|
+
command: |-
|
|
621
|
+
mkdir -p /tmp/test-results
|
|
622
|
+
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
|
|
623
|
+
rm -rf coverage
|
|
624
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
625
|
+
- store_test_results:
|
|
626
|
+
path: "/tmp/test-results"
|
|
627
|
+
- store_artifacts:
|
|
628
|
+
path: "/tmp/test-results"
|
|
629
|
+
destination: test-results
|
|
392
630
|
JRuby 9.2.10.0, JDK 13:
|
|
393
631
|
docker:
|
|
394
632
|
- image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
|
|
@@ -414,7 +652,7 @@ jobs:
|
|
|
414
652
|
- store_artifacts:
|
|
415
653
|
path: "/tmp/test-results"
|
|
416
654
|
destination: test-results
|
|
417
|
-
JRuby 9.2.11.1, JDK 8
|
|
655
|
+
JRuby 9.2.11.1, JDK 8 saxon-he-9.8:
|
|
418
656
|
docker:
|
|
419
657
|
- image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
|
|
420
658
|
environment:
|
|
@@ -448,6 +686,40 @@ jobs:
|
|
|
448
686
|
- store_artifacts:
|
|
449
687
|
path: "/tmp/test-results"
|
|
450
688
|
destination: test-results
|
|
689
|
+
JRuby 9.2.11.1, JDK 8 saxon-he-10.2:
|
|
690
|
+
docker:
|
|
691
|
+
- image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
|
|
692
|
+
environment:
|
|
693
|
+
BUNDLE_JOBS: 3
|
|
694
|
+
BUNDLE_RETRY: 3
|
|
695
|
+
BUNDLE_PATH: vendor/bundle
|
|
696
|
+
JRUBY_OPTS: "--dev --debug"
|
|
697
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
698
|
+
steps:
|
|
699
|
+
- checkout
|
|
700
|
+
- run:
|
|
701
|
+
name: Download SaxonHE10-2J.zip
|
|
702
|
+
command: |-
|
|
703
|
+
mkdir -p /tmp/saxon
|
|
704
|
+
cd /tmp/saxon
|
|
705
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
706
|
+
unzip SaxonHE10-2J.zip
|
|
707
|
+
rm -f SaxonHE10-2J.zip
|
|
708
|
+
- run:
|
|
709
|
+
name: Bundle Install
|
|
710
|
+
command: bundle check || bundle install
|
|
711
|
+
- run:
|
|
712
|
+
name: Run the tests
|
|
713
|
+
command: |-
|
|
714
|
+
mkdir -p /tmp/test-results
|
|
715
|
+
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
|
|
716
|
+
rm -rf coverage
|
|
717
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
718
|
+
- store_test_results:
|
|
719
|
+
path: "/tmp/test-results"
|
|
720
|
+
- store_artifacts:
|
|
721
|
+
path: "/tmp/test-results"
|
|
722
|
+
destination: test-results
|
|
451
723
|
JRuby 9.2.11.1, JDK 8:
|
|
452
724
|
docker:
|
|
453
725
|
- image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
|
|
@@ -473,7 +745,7 @@ jobs:
|
|
|
473
745
|
- store_artifacts:
|
|
474
746
|
path: "/tmp/test-results"
|
|
475
747
|
destination: test-results
|
|
476
|
-
JRuby 9.2.11.1, JDK 11
|
|
748
|
+
JRuby 9.2.11.1, JDK 11 saxon-he-9.8:
|
|
477
749
|
docker:
|
|
478
750
|
- image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
|
|
479
751
|
environment:
|
|
@@ -507,6 +779,40 @@ jobs:
|
|
|
507
779
|
- store_artifacts:
|
|
508
780
|
path: "/tmp/test-results"
|
|
509
781
|
destination: test-results
|
|
782
|
+
JRuby 9.2.11.1, JDK 11 saxon-he-10.2:
|
|
783
|
+
docker:
|
|
784
|
+
- image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
|
|
785
|
+
environment:
|
|
786
|
+
BUNDLE_JOBS: 3
|
|
787
|
+
BUNDLE_RETRY: 3
|
|
788
|
+
BUNDLE_PATH: vendor/bundle
|
|
789
|
+
JRUBY_OPTS: "--dev --debug"
|
|
790
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
791
|
+
steps:
|
|
792
|
+
- checkout
|
|
793
|
+
- run:
|
|
794
|
+
name: Download SaxonHE10-2J.zip
|
|
795
|
+
command: |-
|
|
796
|
+
mkdir -p /tmp/saxon
|
|
797
|
+
cd /tmp/saxon
|
|
798
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
799
|
+
unzip SaxonHE10-2J.zip
|
|
800
|
+
rm -f SaxonHE10-2J.zip
|
|
801
|
+
- run:
|
|
802
|
+
name: Bundle Install
|
|
803
|
+
command: bundle check || bundle install
|
|
804
|
+
- run:
|
|
805
|
+
name: Run the tests
|
|
806
|
+
command: |-
|
|
807
|
+
mkdir -p /tmp/test-results
|
|
808
|
+
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
|
|
809
|
+
rm -rf coverage
|
|
810
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
811
|
+
- store_test_results:
|
|
812
|
+
path: "/tmp/test-results"
|
|
813
|
+
- store_artifacts:
|
|
814
|
+
path: "/tmp/test-results"
|
|
815
|
+
destination: test-results
|
|
510
816
|
JRuby 9.2.11.1, JDK 11:
|
|
511
817
|
docker:
|
|
512
818
|
- image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
|
|
@@ -532,7 +838,7 @@ jobs:
|
|
|
532
838
|
- store_artifacts:
|
|
533
839
|
path: "/tmp/test-results"
|
|
534
840
|
destination: test-results
|
|
535
|
-
JRuby 9.2.11.1, JDK 13
|
|
841
|
+
JRuby 9.2.11.1, JDK 13 saxon-he-9.8:
|
|
536
842
|
docker:
|
|
537
843
|
- image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
|
|
538
844
|
environment:
|
|
@@ -566,6 +872,40 @@ jobs:
|
|
|
566
872
|
- store_artifacts:
|
|
567
873
|
path: "/tmp/test-results"
|
|
568
874
|
destination: test-results
|
|
875
|
+
JRuby 9.2.11.1, JDK 13 saxon-he-10.2:
|
|
876
|
+
docker:
|
|
877
|
+
- image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
|
|
878
|
+
environment:
|
|
879
|
+
BUNDLE_JOBS: 3
|
|
880
|
+
BUNDLE_RETRY: 3
|
|
881
|
+
BUNDLE_PATH: vendor/bundle
|
|
882
|
+
JRUBY_OPTS: "--dev --debug"
|
|
883
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
884
|
+
steps:
|
|
885
|
+
- checkout
|
|
886
|
+
- run:
|
|
887
|
+
name: Download SaxonHE10-2J.zip
|
|
888
|
+
command: |-
|
|
889
|
+
mkdir -p /tmp/saxon
|
|
890
|
+
cd /tmp/saxon
|
|
891
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
892
|
+
unzip SaxonHE10-2J.zip
|
|
893
|
+
rm -f SaxonHE10-2J.zip
|
|
894
|
+
- run:
|
|
895
|
+
name: Bundle Install
|
|
896
|
+
command: bundle check || bundle install
|
|
897
|
+
- run:
|
|
898
|
+
name: Run the tests
|
|
899
|
+
command: |-
|
|
900
|
+
mkdir -p /tmp/test-results
|
|
901
|
+
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
|
|
902
|
+
rm -rf coverage
|
|
903
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
904
|
+
- store_test_results:
|
|
905
|
+
path: "/tmp/test-results"
|
|
906
|
+
- store_artifacts:
|
|
907
|
+
path: "/tmp/test-results"
|
|
908
|
+
destination: test-results
|
|
569
909
|
JRuby 9.2.11.1, JDK 13:
|
|
570
910
|
docker:
|
|
571
911
|
- image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
|
|
@@ -591,7 +931,7 @@ jobs:
|
|
|
591
931
|
- store_artifacts:
|
|
592
932
|
path: "/tmp/test-results"
|
|
593
933
|
destination: test-results
|
|
594
|
-
JRuby 9.2.12.0, JDK 8
|
|
934
|
+
JRuby 9.2.12.0, JDK 8 saxon-he-9.8:
|
|
595
935
|
docker:
|
|
596
936
|
- image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
|
|
597
937
|
environment:
|
|
@@ -624,10 +964,56 @@ jobs:
|
|
|
624
964
|
./cc-test-reporter before-build
|
|
625
965
|
mkdir -p /tmp/test-results
|
|
626
966
|
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
|
|
967
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading-alt-saxon-he-9.8.json"; fi
|
|
628
968
|
rm -rf coverage
|
|
629
969
|
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
|
|
970
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main-alt-saxon-he-9.8.json"; fi
|
|
971
|
+
- persist_to_workspace:
|
|
972
|
+
root: "~/project"
|
|
973
|
+
paths:
|
|
974
|
+
- cc-coverage*
|
|
975
|
+
- store_test_results:
|
|
976
|
+
path: "/tmp/test-results"
|
|
977
|
+
- store_artifacts:
|
|
978
|
+
path: "/tmp/test-results"
|
|
979
|
+
destination: test-results
|
|
980
|
+
JRuby 9.2.12.0, JDK 8 saxon-he-10.2:
|
|
981
|
+
docker:
|
|
982
|
+
- image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
|
|
983
|
+
environment:
|
|
984
|
+
BUNDLE_JOBS: 3
|
|
985
|
+
BUNDLE_RETRY: 3
|
|
986
|
+
BUNDLE_PATH: vendor/bundle
|
|
987
|
+
JRUBY_OPTS: "--dev --debug"
|
|
988
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
989
|
+
steps:
|
|
990
|
+
- checkout
|
|
991
|
+
- run:
|
|
992
|
+
name: Download SaxonHE10-2J.zip
|
|
993
|
+
command: |-
|
|
994
|
+
mkdir -p /tmp/saxon
|
|
995
|
+
cd /tmp/saxon
|
|
996
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
997
|
+
unzip SaxonHE10-2J.zip
|
|
998
|
+
rm -f SaxonHE10-2J.zip
|
|
999
|
+
- run:
|
|
1000
|
+
name: Bundle Install
|
|
1001
|
+
command: bundle check || bundle install
|
|
1002
|
+
- run:
|
|
1003
|
+
name: Install Code Climate Test Reporter
|
|
1004
|
+
command: |
|
|
1005
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
1006
|
+
chmod +x ./cc-test-reporter
|
|
1007
|
+
- run:
|
|
1008
|
+
name: Run the tests, and upload coverage data to Code Climate
|
|
1009
|
+
command: |-
|
|
1010
|
+
./cc-test-reporter before-build
|
|
1011
|
+
mkdir -p /tmp/test-results
|
|
1012
|
+
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
|
|
1013
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading-alt-saxon-he-10.2.json"; fi
|
|
1014
|
+
rm -rf coverage
|
|
1015
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
1016
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main-alt-saxon-he-10.2.json"; fi
|
|
631
1017
|
- persist_to_workspace:
|
|
632
1018
|
root: "~/project"
|
|
633
1019
|
paths:
|
|
@@ -674,7 +1060,7 @@ jobs:
|
|
|
674
1060
|
- store_artifacts:
|
|
675
1061
|
path: "/tmp/test-results"
|
|
676
1062
|
destination: test-results
|
|
677
|
-
JRuby 9.2.12.0, JDK 11
|
|
1063
|
+
JRuby 9.2.12.0, JDK 11 saxon-he-9.8:
|
|
678
1064
|
docker:
|
|
679
1065
|
- image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
|
|
680
1066
|
environment:
|
|
@@ -708,6 +1094,40 @@ jobs:
|
|
|
708
1094
|
- store_artifacts:
|
|
709
1095
|
path: "/tmp/test-results"
|
|
710
1096
|
destination: test-results
|
|
1097
|
+
JRuby 9.2.12.0, JDK 11 saxon-he-10.2:
|
|
1098
|
+
docker:
|
|
1099
|
+
- image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
|
|
1100
|
+
environment:
|
|
1101
|
+
BUNDLE_JOBS: 3
|
|
1102
|
+
BUNDLE_RETRY: 3
|
|
1103
|
+
BUNDLE_PATH: vendor/bundle
|
|
1104
|
+
JRUBY_OPTS: "--dev --debug"
|
|
1105
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
1106
|
+
steps:
|
|
1107
|
+
- checkout
|
|
1108
|
+
- run:
|
|
1109
|
+
name: Download SaxonHE10-2J.zip
|
|
1110
|
+
command: |-
|
|
1111
|
+
mkdir -p /tmp/saxon
|
|
1112
|
+
cd /tmp/saxon
|
|
1113
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
1114
|
+
unzip SaxonHE10-2J.zip
|
|
1115
|
+
rm -f SaxonHE10-2J.zip
|
|
1116
|
+
- run:
|
|
1117
|
+
name: Bundle Install
|
|
1118
|
+
command: bundle check || bundle install
|
|
1119
|
+
- run:
|
|
1120
|
+
name: Run the tests
|
|
1121
|
+
command: |-
|
|
1122
|
+
mkdir -p /tmp/test-results
|
|
1123
|
+
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
|
|
1124
|
+
rm -rf coverage
|
|
1125
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
1126
|
+
- store_test_results:
|
|
1127
|
+
path: "/tmp/test-results"
|
|
1128
|
+
- store_artifacts:
|
|
1129
|
+
path: "/tmp/test-results"
|
|
1130
|
+
destination: test-results
|
|
711
1131
|
JRuby 9.2.12.0, JDK 11:
|
|
712
1132
|
docker:
|
|
713
1133
|
- image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
|
|
@@ -733,7 +1153,7 @@ jobs:
|
|
|
733
1153
|
- store_artifacts:
|
|
734
1154
|
path: "/tmp/test-results"
|
|
735
1155
|
destination: test-results
|
|
736
|
-
JRuby 9.2.12.0, JDK 13
|
|
1156
|
+
JRuby 9.2.12.0, JDK 13 saxon-he-9.8:
|
|
737
1157
|
docker:
|
|
738
1158
|
- image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
|
|
739
1159
|
environment:
|
|
@@ -767,6 +1187,40 @@ jobs:
|
|
|
767
1187
|
- store_artifacts:
|
|
768
1188
|
path: "/tmp/test-results"
|
|
769
1189
|
destination: test-results
|
|
1190
|
+
JRuby 9.2.12.0, JDK 13 saxon-he-10.2:
|
|
1191
|
+
docker:
|
|
1192
|
+
- image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
|
|
1193
|
+
environment:
|
|
1194
|
+
BUNDLE_JOBS: 3
|
|
1195
|
+
BUNDLE_RETRY: 3
|
|
1196
|
+
BUNDLE_PATH: vendor/bundle
|
|
1197
|
+
JRUBY_OPTS: "--dev --debug"
|
|
1198
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
1199
|
+
steps:
|
|
1200
|
+
- checkout
|
|
1201
|
+
- run:
|
|
1202
|
+
name: Download SaxonHE10-2J.zip
|
|
1203
|
+
command: |-
|
|
1204
|
+
mkdir -p /tmp/saxon
|
|
1205
|
+
cd /tmp/saxon
|
|
1206
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
1207
|
+
unzip SaxonHE10-2J.zip
|
|
1208
|
+
rm -f SaxonHE10-2J.zip
|
|
1209
|
+
- run:
|
|
1210
|
+
name: Bundle Install
|
|
1211
|
+
command: bundle check || bundle install
|
|
1212
|
+
- run:
|
|
1213
|
+
name: Run the tests
|
|
1214
|
+
command: |-
|
|
1215
|
+
mkdir -p /tmp/test-results
|
|
1216
|
+
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
|
|
1217
|
+
rm -rf coverage
|
|
1218
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
1219
|
+
- store_test_results:
|
|
1220
|
+
path: "/tmp/test-results"
|
|
1221
|
+
- store_artifacts:
|
|
1222
|
+
path: "/tmp/test-results"
|
|
1223
|
+
destination: test-results
|
|
770
1224
|
JRuby 9.2.12.0, JDK 13:
|
|
771
1225
|
docker:
|
|
772
1226
|
- image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
|
|
@@ -792,7 +1246,7 @@ jobs:
|
|
|
792
1246
|
- store_artifacts:
|
|
793
1247
|
path: "/tmp/test-results"
|
|
794
1248
|
destination: test-results
|
|
795
|
-
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8
|
|
1249
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 saxon-he-9.8:
|
|
796
1250
|
docker:
|
|
797
1251
|
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
|
|
798
1252
|
environment:
|
|
@@ -826,6 +1280,40 @@ jobs:
|
|
|
826
1280
|
- store_artifacts:
|
|
827
1281
|
path: "/tmp/test-results"
|
|
828
1282
|
destination: test-results
|
|
1283
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 saxon-he-10.2:
|
|
1284
|
+
docker:
|
|
1285
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
|
|
1286
|
+
environment:
|
|
1287
|
+
BUNDLE_JOBS: 3
|
|
1288
|
+
BUNDLE_RETRY: 3
|
|
1289
|
+
BUNDLE_PATH: vendor/bundle
|
|
1290
|
+
JRUBY_OPTS: "--dev --debug"
|
|
1291
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
1292
|
+
steps:
|
|
1293
|
+
- checkout
|
|
1294
|
+
- run:
|
|
1295
|
+
name: Download SaxonHE10-2J.zip
|
|
1296
|
+
command: |-
|
|
1297
|
+
mkdir -p /tmp/saxon
|
|
1298
|
+
cd /tmp/saxon
|
|
1299
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
1300
|
+
unzip SaxonHE10-2J.zip
|
|
1301
|
+
rm -f SaxonHE10-2J.zip
|
|
1302
|
+
- run:
|
|
1303
|
+
name: Bundle Install
|
|
1304
|
+
command: bundle check || bundle install
|
|
1305
|
+
- run:
|
|
1306
|
+
name: Run the tests
|
|
1307
|
+
command: |-
|
|
1308
|
+
mkdir -p /tmp/test-results
|
|
1309
|
+
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
|
|
1310
|
+
rm -rf coverage
|
|
1311
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
1312
|
+
- store_test_results:
|
|
1313
|
+
path: "/tmp/test-results"
|
|
1314
|
+
- store_artifacts:
|
|
1315
|
+
path: "/tmp/test-results"
|
|
1316
|
+
destination: test-results
|
|
829
1317
|
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8:
|
|
830
1318
|
docker:
|
|
831
1319
|
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
|
|
@@ -851,7 +1339,7 @@ jobs:
|
|
|
851
1339
|
- store_artifacts:
|
|
852
1340
|
path: "/tmp/test-results"
|
|
853
1341
|
destination: test-results
|
|
854
|
-
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11
|
|
1342
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 saxon-he-9.8:
|
|
855
1343
|
docker:
|
|
856
1344
|
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
|
|
857
1345
|
environment:
|
|
@@ -885,6 +1373,40 @@ jobs:
|
|
|
885
1373
|
- store_artifacts:
|
|
886
1374
|
path: "/tmp/test-results"
|
|
887
1375
|
destination: test-results
|
|
1376
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 saxon-he-10.2:
|
|
1377
|
+
docker:
|
|
1378
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
|
|
1379
|
+
environment:
|
|
1380
|
+
BUNDLE_JOBS: 3
|
|
1381
|
+
BUNDLE_RETRY: 3
|
|
1382
|
+
BUNDLE_PATH: vendor/bundle
|
|
1383
|
+
JRUBY_OPTS: "--dev --debug"
|
|
1384
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
1385
|
+
steps:
|
|
1386
|
+
- checkout
|
|
1387
|
+
- run:
|
|
1388
|
+
name: Download SaxonHE10-2J.zip
|
|
1389
|
+
command: |-
|
|
1390
|
+
mkdir -p /tmp/saxon
|
|
1391
|
+
cd /tmp/saxon
|
|
1392
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
1393
|
+
unzip SaxonHE10-2J.zip
|
|
1394
|
+
rm -f SaxonHE10-2J.zip
|
|
1395
|
+
- run:
|
|
1396
|
+
name: Bundle Install
|
|
1397
|
+
command: bundle check || bundle install
|
|
1398
|
+
- run:
|
|
1399
|
+
name: Run the tests
|
|
1400
|
+
command: |-
|
|
1401
|
+
mkdir -p /tmp/test-results
|
|
1402
|
+
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
|
|
1403
|
+
rm -rf coverage
|
|
1404
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
1405
|
+
- store_test_results:
|
|
1406
|
+
path: "/tmp/test-results"
|
|
1407
|
+
- store_artifacts:
|
|
1408
|
+
path: "/tmp/test-results"
|
|
1409
|
+
destination: test-results
|
|
888
1410
|
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11:
|
|
889
1411
|
docker:
|
|
890
1412
|
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
|
|
@@ -910,7 +1432,7 @@ jobs:
|
|
|
910
1432
|
- store_artifacts:
|
|
911
1433
|
path: "/tmp/test-results"
|
|
912
1434
|
destination: test-results
|
|
913
|
-
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13
|
|
1435
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 saxon-he-9.8:
|
|
914
1436
|
docker:
|
|
915
1437
|
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
|
|
916
1438
|
environment:
|
|
@@ -944,6 +1466,40 @@ jobs:
|
|
|
944
1466
|
- store_artifacts:
|
|
945
1467
|
path: "/tmp/test-results"
|
|
946
1468
|
destination: test-results
|
|
1469
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 saxon-he-10.2:
|
|
1470
|
+
docker:
|
|
1471
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
|
|
1472
|
+
environment:
|
|
1473
|
+
BUNDLE_JOBS: 3
|
|
1474
|
+
BUNDLE_RETRY: 3
|
|
1475
|
+
BUNDLE_PATH: vendor/bundle
|
|
1476
|
+
JRUBY_OPTS: "--dev --debug"
|
|
1477
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
|
1478
|
+
steps:
|
|
1479
|
+
- checkout
|
|
1480
|
+
- run:
|
|
1481
|
+
name: Download SaxonHE10-2J.zip
|
|
1482
|
+
command: |-
|
|
1483
|
+
mkdir -p /tmp/saxon
|
|
1484
|
+
cd /tmp/saxon
|
|
1485
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip
|
|
1486
|
+
unzip SaxonHE10-2J.zip
|
|
1487
|
+
rm -f SaxonHE10-2J.zip
|
|
1488
|
+
- run:
|
|
1489
|
+
name: Bundle Install
|
|
1490
|
+
command: bundle check || bundle install
|
|
1491
|
+
- run:
|
|
1492
|
+
name: Run the tests
|
|
1493
|
+
command: |-
|
|
1494
|
+
mkdir -p /tmp/test-results
|
|
1495
|
+
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
|
|
1496
|
+
rm -rf coverage
|
|
1497
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
|
1498
|
+
- store_test_results:
|
|
1499
|
+
path: "/tmp/test-results"
|
|
1500
|
+
- store_artifacts:
|
|
1501
|
+
path: "/tmp/test-results"
|
|
1502
|
+
destination: test-results
|
|
947
1503
|
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13:
|
|
948
1504
|
docker:
|
|
949
1505
|
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
|
|
@@ -990,39 +1546,56 @@ workflows:
|
|
|
990
1546
|
version: 2
|
|
991
1547
|
build_and_test:
|
|
992
1548
|
jobs:
|
|
993
|
-
- JRuby 9.2.9.0, JDK 8
|
|
1549
|
+
- JRuby 9.2.9.0, JDK 8 saxon-he-9.8
|
|
1550
|
+
- JRuby 9.2.9.0, JDK 8 saxon-he-10.2
|
|
994
1551
|
- JRuby 9.2.9.0, JDK 8
|
|
995
|
-
- JRuby 9.2.9.0, JDK 11
|
|
1552
|
+
- JRuby 9.2.9.0, JDK 11 saxon-he-9.8
|
|
1553
|
+
- JRuby 9.2.9.0, JDK 11 saxon-he-10.2
|
|
996
1554
|
- JRuby 9.2.9.0, JDK 11
|
|
997
|
-
- JRuby 9.2.9.0, JDK 13
|
|
1555
|
+
- JRuby 9.2.9.0, JDK 13 saxon-he-9.8
|
|
1556
|
+
- JRuby 9.2.9.0, JDK 13 saxon-he-10.2
|
|
998
1557
|
- JRuby 9.2.9.0, JDK 13
|
|
999
|
-
- JRuby 9.1.17.0, JDK 8
|
|
1558
|
+
- JRuby 9.1.17.0, JDK 8 saxon-he-9.8
|
|
1559
|
+
- JRuby 9.1.17.0, JDK 8 saxon-he-10.2
|
|
1000
1560
|
- JRuby 9.1.17.0, JDK 8
|
|
1001
|
-
- JRuby 9.2.10.0, JDK 8
|
|
1561
|
+
- JRuby 9.2.10.0, JDK 8 saxon-he-9.8
|
|
1562
|
+
- JRuby 9.2.10.0, JDK 8 saxon-he-10.2
|
|
1002
1563
|
- JRuby 9.2.10.0, JDK 8
|
|
1003
|
-
- JRuby 9.2.10.0, JDK 11
|
|
1564
|
+
- JRuby 9.2.10.0, JDK 11 saxon-he-9.8
|
|
1565
|
+
- JRuby 9.2.10.0, JDK 11 saxon-he-10.2
|
|
1004
1566
|
- JRuby 9.2.10.0, JDK 11
|
|
1005
|
-
- JRuby 9.2.10.0, JDK 13
|
|
1567
|
+
- JRuby 9.2.10.0, JDK 13 saxon-he-9.8
|
|
1568
|
+
- JRuby 9.2.10.0, JDK 13 saxon-he-10.2
|
|
1006
1569
|
- JRuby 9.2.10.0, JDK 13
|
|
1007
|
-
- JRuby 9.2.11.1, JDK 8
|
|
1570
|
+
- JRuby 9.2.11.1, JDK 8 saxon-he-9.8
|
|
1571
|
+
- JRuby 9.2.11.1, JDK 8 saxon-he-10.2
|
|
1008
1572
|
- JRuby 9.2.11.1, JDK 8
|
|
1009
|
-
- JRuby 9.2.11.1, JDK 11
|
|
1573
|
+
- JRuby 9.2.11.1, JDK 11 saxon-he-9.8
|
|
1574
|
+
- JRuby 9.2.11.1, JDK 11 saxon-he-10.2
|
|
1010
1575
|
- JRuby 9.2.11.1, JDK 11
|
|
1011
|
-
- JRuby 9.2.11.1, JDK 13
|
|
1576
|
+
- JRuby 9.2.11.1, JDK 13 saxon-he-9.8
|
|
1577
|
+
- JRuby 9.2.11.1, JDK 13 saxon-he-10.2
|
|
1012
1578
|
- JRuby 9.2.11.1, JDK 13
|
|
1013
|
-
- JRuby 9.2.12.0, JDK 8
|
|
1579
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-9.8
|
|
1580
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-10.2
|
|
1014
1581
|
- JRuby 9.2.12.0, JDK 8
|
|
1015
|
-
- JRuby 9.2.12.0, JDK 11
|
|
1582
|
+
- JRuby 9.2.12.0, JDK 11 saxon-he-9.8
|
|
1583
|
+
- JRuby 9.2.12.0, JDK 11 saxon-he-10.2
|
|
1016
1584
|
- JRuby 9.2.12.0, JDK 11
|
|
1017
|
-
- JRuby 9.2.12.0, JDK 13
|
|
1585
|
+
- JRuby 9.2.12.0, JDK 13 saxon-he-9.8
|
|
1586
|
+
- JRuby 9.2.12.0, JDK 13 saxon-he-10.2
|
|
1018
1587
|
- JRuby 9.2.12.0, JDK 13
|
|
1019
|
-
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8
|
|
1588
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 saxon-he-9.8
|
|
1589
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 saxon-he-10.2
|
|
1020
1590
|
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8
|
|
1021
|
-
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11
|
|
1591
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 saxon-he-9.8
|
|
1592
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 saxon-he-10.2
|
|
1022
1593
|
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11
|
|
1023
|
-
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13
|
|
1594
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 saxon-he-9.8
|
|
1595
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 saxon-he-10.2
|
|
1024
1596
|
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13
|
|
1025
1597
|
- Report test coverage to Code Climate:
|
|
1026
1598
|
requires:
|
|
1027
|
-
- JRuby 9.2.12.0, JDK 8
|
|
1599
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-9.8
|
|
1600
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-10.2
|
|
1028
1601
|
- JRuby 9.2.12.0, JDK 8
|
data/Rakefile
CHANGED
|
@@ -38,7 +38,8 @@ task :circleci do
|
|
|
38
38
|
|
|
39
39
|
def alt_saxon_urls
|
|
40
40
|
{
|
|
41
|
-
"https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip" => "
|
|
41
|
+
"https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip" => "saxon-he-9.8",
|
|
42
|
+
"https://sourceforge.net/projects/saxon/files/Saxon-HE/10/Java/SaxonHE10-2J.zip" => "saxon-he-10.2"
|
|
42
43
|
}
|
|
43
44
|
end
|
|
44
45
|
|
|
@@ -192,14 +193,15 @@ task :circleci do
|
|
|
192
193
|
"mkdir -p /tmp/test-results",
|
|
193
194
|
"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"
|
|
194
195
|
]
|
|
196
|
+
cc_suffix = opts.fetch(:alt_saxon_url) ? "-alt-#{alt_saxon_urls[opts.fetch(:alt_saxon_url)]}" : ''
|
|
195
197
|
if opts.fetch(:run_codeclimate)
|
|
196
198
|
command.prepend("./cc-test-reporter before-build")
|
|
197
|
-
command.append("if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o \"cc-coverage-jar-loading#{
|
|
199
|
+
command.append("if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o \"cc-coverage-jar-loading#{cc_suffix}.json\"; fi")
|
|
198
200
|
end
|
|
199
201
|
command.append("rm -rf coverage")
|
|
200
202
|
command.append("bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress")
|
|
201
203
|
if opts.fetch(:run_codeclimate)
|
|
202
|
-
command.append("if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o \"cc-coverage-main#{
|
|
204
|
+
command.append("if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o \"cc-coverage-main#{cc_suffix}.json\"; fi")
|
|
203
205
|
end
|
|
204
206
|
|
|
205
207
|
{
|
data/lib/saxon/loader.rb
CHANGED
|
@@ -90,7 +90,9 @@ module Saxon
|
|
|
90
90
|
private
|
|
91
91
|
|
|
92
92
|
def main_jar(path)
|
|
93
|
-
|
|
93
|
+
path.children.find { |jar|
|
|
94
|
+
!jar.basename.to_s.match(/^saxon(?:9[hpe]e\.jar|-[hpe]e-10\.[0-9]+\.jar)$/).nil?
|
|
95
|
+
}
|
|
94
96
|
end
|
|
95
97
|
|
|
96
98
|
def extra_jars(path)
|
data/lib/saxon/version.rb
CHANGED