saxon-rb 0.7.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 +1203 -51
- data/.rspec-jar-loading +2 -0
- data/.ruby-version +1 -1
- data/README.md +1 -1
- data/Rakefile +13 -5
- data/lib/net/sf/saxon/Saxon-HE/{9.9.1-6/Saxon-HE-9.9.1-6.jar → 9.9.1-7/Saxon-HE-9.9.1-7.jar} +0 -0
- data/lib/saxon-rb.rb +1 -0
- data/lib/saxon-rb_jars.rb +2 -2
- data/lib/saxon/feature_flags/version.rb +1 -4
- data/lib/saxon/jruby_bug_6197_workaround.rb +5 -0
- data/lib/saxon/loader.rb +56 -43
- data/lib/saxon/s9api.rb +17 -17
- data/lib/saxon/version.rb +2 -2
- data/lib/saxon/version/library.rb +3 -3
- data/lib/saxon/xdm/atomic_value.rb +13 -8
- data/saxon-rb.gemspec +1 -1
- metadata +17 -15
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:
|
@@ -24,21 +24,46 @@ jobs:
|
|
24
24
|
name: Bundle Install
|
25
25
|
command: bundle check || bundle install
|
26
26
|
- run:
|
27
|
-
name:
|
28
|
-
command:
|
29
|
-
|
30
|
-
|
27
|
+
name: Run the tests
|
28
|
+
command: |-
|
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
|
32
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
33
|
+
- store_test_results:
|
34
|
+
path: "/tmp/test-results"
|
35
|
+
- store_artifacts:
|
36
|
+
path: "/tmp/test-results"
|
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
|
31
49
|
- run:
|
32
|
-
name:
|
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
|
33
62
|
command: |-
|
34
|
-
./cc-test-reporter before-build
|
35
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
|
36
66
|
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
67
|
- store_test_results:
|
43
68
|
path: "/tmp/test-results"
|
44
69
|
- store_artifacts:
|
@@ -58,27 +83,18 @@ jobs:
|
|
58
83
|
name: Bundle Install
|
59
84
|
command: bundle check || bundle install
|
60
85
|
- 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
|
86
|
+
name: Run the tests
|
67
87
|
command: |-
|
68
|
-
./cc-test-reporter before-build
|
69
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
|
70
91
|
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
92
|
- store_test_results:
|
77
93
|
path: "/tmp/test-results"
|
78
94
|
- store_artifacts:
|
79
95
|
path: "/tmp/test-results"
|
80
96
|
destination: test-results
|
81
|
-
JRuby 9.2.9.0, JDK 11
|
97
|
+
JRuby 9.2.9.0, JDK 11 saxon-he-9.8:
|
82
98
|
docker:
|
83
99
|
- image: fidothe/circleci:jruby-9.2.9.0-11-jdk-slim
|
84
100
|
environment:
|
@@ -104,6 +120,42 @@ jobs:
|
|
104
120
|
name: Run the tests
|
105
121
|
command: |-
|
106
122
|
mkdir -p /tmp/test-results
|
123
|
+
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
|
124
|
+
rm -rf coverage
|
125
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
126
|
+
- store_test_results:
|
127
|
+
path: "/tmp/test-results"
|
128
|
+
- store_artifacts:
|
129
|
+
path: "/tmp/test-results"
|
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
|
107
159
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
108
160
|
- store_test_results:
|
109
161
|
path: "/tmp/test-results"
|
@@ -127,13 +179,15 @@ jobs:
|
|
127
179
|
name: Run the tests
|
128
180
|
command: |-
|
129
181
|
mkdir -p /tmp/test-results
|
182
|
+
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
|
183
|
+
rm -rf coverage
|
130
184
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
131
185
|
- store_test_results:
|
132
186
|
path: "/tmp/test-results"
|
133
187
|
- store_artifacts:
|
134
188
|
path: "/tmp/test-results"
|
135
189
|
destination: test-results
|
136
|
-
JRuby 9.2.9.0, JDK 13
|
190
|
+
JRuby 9.2.9.0, JDK 13 saxon-he-9.8:
|
137
191
|
docker:
|
138
192
|
- image: fidothe/circleci:jruby-9.2.9.0-13-jdk-slim
|
139
193
|
environment:
|
@@ -159,6 +213,42 @@ jobs:
|
|
159
213
|
name: Run the tests
|
160
214
|
command: |-
|
161
215
|
mkdir -p /tmp/test-results
|
216
|
+
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
|
217
|
+
rm -rf coverage
|
218
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
219
|
+
- store_test_results:
|
220
|
+
path: "/tmp/test-results"
|
221
|
+
- store_artifacts:
|
222
|
+
path: "/tmp/test-results"
|
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
|
162
252
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
163
253
|
- store_test_results:
|
164
254
|
path: "/tmp/test-results"
|
@@ -182,13 +272,15 @@ jobs:
|
|
182
272
|
name: Run the tests
|
183
273
|
command: |-
|
184
274
|
mkdir -p /tmp/test-results
|
275
|
+
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
|
276
|
+
rm -rf coverage
|
185
277
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
186
278
|
- store_test_results:
|
187
279
|
path: "/tmp/test-results"
|
188
280
|
- store_artifacts:
|
189
281
|
path: "/tmp/test-results"
|
190
282
|
destination: test-results
|
191
|
-
JRuby 9.1.17.0, JDK 8
|
283
|
+
JRuby 9.1.17.0, JDK 8 saxon-he-9.8:
|
192
284
|
docker:
|
193
285
|
- image: fidothe/circleci:jruby-9.1.17.0-8-jdk-slim
|
194
286
|
environment:
|
@@ -214,6 +306,42 @@ jobs:
|
|
214
306
|
name: Run the tests
|
215
307
|
command: |-
|
216
308
|
mkdir -p /tmp/test-results
|
309
|
+
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
|
310
|
+
rm -rf coverage
|
311
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
312
|
+
- store_test_results:
|
313
|
+
path: "/tmp/test-results"
|
314
|
+
- store_artifacts:
|
315
|
+
path: "/tmp/test-results"
|
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
|
217
345
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
218
346
|
- store_test_results:
|
219
347
|
path: "/tmp/test-results"
|
@@ -237,15 +365,17 @@ jobs:
|
|
237
365
|
name: Run the tests
|
238
366
|
command: |-
|
239
367
|
mkdir -p /tmp/test-results
|
368
|
+
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
|
369
|
+
rm -rf coverage
|
240
370
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
241
371
|
- store_test_results:
|
242
372
|
path: "/tmp/test-results"
|
243
373
|
- store_artifacts:
|
244
374
|
path: "/tmp/test-results"
|
245
375
|
destination: test-results
|
246
|
-
JRuby 9.2.10.0
|
376
|
+
JRuby 9.2.10.0, JDK 8 saxon-he-9.8:
|
247
377
|
docker:
|
248
|
-
- image: fidothe/circleci:jruby-9.2.10.0-
|
378
|
+
- image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
|
249
379
|
environment:
|
250
380
|
BUNDLE_JOBS: 3
|
251
381
|
BUNDLE_RETRY: 3
|
@@ -269,15 +399,51 @@ jobs:
|
|
269
399
|
name: Run the tests
|
270
400
|
command: |-
|
271
401
|
mkdir -p /tmp/test-results
|
402
|
+
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
|
403
|
+
rm -rf coverage
|
404
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
405
|
+
- store_test_results:
|
406
|
+
path: "/tmp/test-results"
|
407
|
+
- store_artifacts:
|
408
|
+
path: "/tmp/test-results"
|
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
|
272
438
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
273
439
|
- store_test_results:
|
274
440
|
path: "/tmp/test-results"
|
275
441
|
- store_artifacts:
|
276
442
|
path: "/tmp/test-results"
|
277
443
|
destination: test-results
|
278
|
-
JRuby 9.2.10.0
|
444
|
+
JRuby 9.2.10.0, JDK 8:
|
279
445
|
docker:
|
280
|
-
- image: fidothe/circleci:jruby-9.2.10.0-
|
446
|
+
- image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
|
281
447
|
environment:
|
282
448
|
BUNDLE_JOBS: 3
|
283
449
|
BUNDLE_RETRY: 3
|
@@ -292,15 +458,17 @@ jobs:
|
|
292
458
|
name: Run the tests
|
293
459
|
command: |-
|
294
460
|
mkdir -p /tmp/test-results
|
461
|
+
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
|
462
|
+
rm -rf coverage
|
295
463
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
296
464
|
- store_test_results:
|
297
465
|
path: "/tmp/test-results"
|
298
466
|
- store_artifacts:
|
299
467
|
path: "/tmp/test-results"
|
300
468
|
destination: test-results
|
301
|
-
JRuby 9.2.10.0
|
469
|
+
JRuby 9.2.10.0, JDK 11 saxon-he-9.8:
|
302
470
|
docker:
|
303
|
-
- image: fidothe/circleci:jruby-9.2.10.0-
|
471
|
+
- image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
|
304
472
|
environment:
|
305
473
|
BUNDLE_JOBS: 3
|
306
474
|
BUNDLE_RETRY: 3
|
@@ -324,15 +492,51 @@ jobs:
|
|
324
492
|
name: Run the tests
|
325
493
|
command: |-
|
326
494
|
mkdir -p /tmp/test-results
|
495
|
+
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
|
496
|
+
rm -rf coverage
|
497
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
498
|
+
- store_test_results:
|
499
|
+
path: "/tmp/test-results"
|
500
|
+
- store_artifacts:
|
501
|
+
path: "/tmp/test-results"
|
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
|
327
531
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
328
532
|
- store_test_results:
|
329
533
|
path: "/tmp/test-results"
|
330
534
|
- store_artifacts:
|
331
535
|
path: "/tmp/test-results"
|
332
536
|
destination: test-results
|
333
|
-
JRuby 9.2.10.0
|
537
|
+
JRuby 9.2.10.0, JDK 11:
|
334
538
|
docker:
|
335
|
-
- image: fidothe/circleci:jruby-9.2.10.0-
|
539
|
+
- image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
|
336
540
|
environment:
|
337
541
|
BUNDLE_JOBS: 3
|
338
542
|
BUNDLE_RETRY: 3
|
@@ -347,15 +551,17 @@ jobs:
|
|
347
551
|
name: Run the tests
|
348
552
|
command: |-
|
349
553
|
mkdir -p /tmp/test-results
|
554
|
+
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
|
555
|
+
rm -rf coverage
|
350
556
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
351
557
|
- store_test_results:
|
352
558
|
path: "/tmp/test-results"
|
353
559
|
- store_artifacts:
|
354
560
|
path: "/tmp/test-results"
|
355
561
|
destination: test-results
|
356
|
-
JRuby 9.2.10.0
|
562
|
+
JRuby 9.2.10.0, JDK 13 saxon-he-9.8:
|
357
563
|
docker:
|
358
|
-
- image: fidothe/circleci:jruby-9.2.10.0-
|
564
|
+
- image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
|
359
565
|
environment:
|
360
566
|
BUNDLE_JOBS: 3
|
361
567
|
BUNDLE_RETRY: 3
|
@@ -379,15 +585,924 @@ jobs:
|
|
379
585
|
name: Run the tests
|
380
586
|
command: |-
|
381
587
|
mkdir -p /tmp/test-results
|
588
|
+
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
|
589
|
+
rm -rf coverage
|
590
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
591
|
+
- store_test_results:
|
592
|
+
path: "/tmp/test-results"
|
593
|
+
- store_artifacts:
|
594
|
+
path: "/tmp/test-results"
|
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
|
630
|
+
JRuby 9.2.10.0, JDK 13:
|
631
|
+
docker:
|
632
|
+
- image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
|
633
|
+
environment:
|
634
|
+
BUNDLE_JOBS: 3
|
635
|
+
BUNDLE_RETRY: 3
|
636
|
+
BUNDLE_PATH: vendor/bundle
|
637
|
+
JRUBY_OPTS: "--dev --debug"
|
638
|
+
steps:
|
639
|
+
- checkout
|
640
|
+
- run:
|
641
|
+
name: Bundle Install
|
642
|
+
command: bundle check || bundle install
|
643
|
+
- run:
|
644
|
+
name: Run the tests
|
645
|
+
command: |-
|
646
|
+
mkdir -p /tmp/test-results
|
647
|
+
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
|
648
|
+
rm -rf coverage
|
649
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
650
|
+
- store_test_results:
|
651
|
+
path: "/tmp/test-results"
|
652
|
+
- store_artifacts:
|
653
|
+
path: "/tmp/test-results"
|
654
|
+
destination: test-results
|
655
|
+
JRuby 9.2.11.1, JDK 8 saxon-he-9.8:
|
656
|
+
docker:
|
657
|
+
- image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
|
658
|
+
environment:
|
659
|
+
BUNDLE_JOBS: 3
|
660
|
+
BUNDLE_RETRY: 3
|
661
|
+
BUNDLE_PATH: vendor/bundle
|
662
|
+
JRUBY_OPTS: "--dev --debug"
|
663
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
664
|
+
steps:
|
665
|
+
- checkout
|
666
|
+
- run:
|
667
|
+
name: Download SaxonHE9-8-0-15J.zip
|
668
|
+
command: |-
|
669
|
+
mkdir -p /tmp/saxon
|
670
|
+
cd /tmp/saxon
|
671
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
672
|
+
unzip SaxonHE9-8-0-15J.zip
|
673
|
+
rm -f SaxonHE9-8-0-15J.zip
|
674
|
+
- run:
|
675
|
+
name: Bundle Install
|
676
|
+
command: bundle check || bundle install
|
677
|
+
- run:
|
678
|
+
name: Run the tests
|
679
|
+
command: |-
|
680
|
+
mkdir -p /tmp/test-results
|
681
|
+
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
|
682
|
+
rm -rf coverage
|
683
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
684
|
+
- store_test_results:
|
685
|
+
path: "/tmp/test-results"
|
686
|
+
- store_artifacts:
|
687
|
+
path: "/tmp/test-results"
|
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
|
723
|
+
JRuby 9.2.11.1, JDK 8:
|
724
|
+
docker:
|
725
|
+
- image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
|
726
|
+
environment:
|
727
|
+
BUNDLE_JOBS: 3
|
728
|
+
BUNDLE_RETRY: 3
|
729
|
+
BUNDLE_PATH: vendor/bundle
|
730
|
+
JRUBY_OPTS: "--dev --debug"
|
731
|
+
steps:
|
732
|
+
- checkout
|
733
|
+
- run:
|
734
|
+
name: Bundle Install
|
735
|
+
command: bundle check || bundle install
|
736
|
+
- run:
|
737
|
+
name: Run the tests
|
738
|
+
command: |-
|
739
|
+
mkdir -p /tmp/test-results
|
740
|
+
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
|
741
|
+
rm -rf coverage
|
742
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
743
|
+
- store_test_results:
|
744
|
+
path: "/tmp/test-results"
|
745
|
+
- store_artifacts:
|
746
|
+
path: "/tmp/test-results"
|
747
|
+
destination: test-results
|
748
|
+
JRuby 9.2.11.1, JDK 11 saxon-he-9.8:
|
749
|
+
docker:
|
750
|
+
- image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
|
751
|
+
environment:
|
752
|
+
BUNDLE_JOBS: 3
|
753
|
+
BUNDLE_RETRY: 3
|
754
|
+
BUNDLE_PATH: vendor/bundle
|
755
|
+
JRUBY_OPTS: "--dev --debug"
|
756
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
757
|
+
steps:
|
758
|
+
- checkout
|
759
|
+
- run:
|
760
|
+
name: Download SaxonHE9-8-0-15J.zip
|
761
|
+
command: |-
|
762
|
+
mkdir -p /tmp/saxon
|
763
|
+
cd /tmp/saxon
|
764
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
765
|
+
unzip SaxonHE9-8-0-15J.zip
|
766
|
+
rm -f SaxonHE9-8-0-15J.zip
|
767
|
+
- run:
|
768
|
+
name: Bundle Install
|
769
|
+
command: bundle check || bundle install
|
770
|
+
- run:
|
771
|
+
name: Run the tests
|
772
|
+
command: |-
|
773
|
+
mkdir -p /tmp/test-results
|
774
|
+
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
|
775
|
+
rm -rf coverage
|
776
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
777
|
+
- store_test_results:
|
778
|
+
path: "/tmp/test-results"
|
779
|
+
- store_artifacts:
|
780
|
+
path: "/tmp/test-results"
|
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
|
816
|
+
JRuby 9.2.11.1, JDK 11:
|
817
|
+
docker:
|
818
|
+
- image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
|
819
|
+
environment:
|
820
|
+
BUNDLE_JOBS: 3
|
821
|
+
BUNDLE_RETRY: 3
|
822
|
+
BUNDLE_PATH: vendor/bundle
|
823
|
+
JRUBY_OPTS: "--dev --debug"
|
824
|
+
steps:
|
825
|
+
- checkout
|
826
|
+
- run:
|
827
|
+
name: Bundle Install
|
828
|
+
command: bundle check || bundle install
|
829
|
+
- run:
|
830
|
+
name: Run the tests
|
831
|
+
command: |-
|
832
|
+
mkdir -p /tmp/test-results
|
833
|
+
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
|
834
|
+
rm -rf coverage
|
835
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
836
|
+
- store_test_results:
|
837
|
+
path: "/tmp/test-results"
|
838
|
+
- store_artifacts:
|
839
|
+
path: "/tmp/test-results"
|
840
|
+
destination: test-results
|
841
|
+
JRuby 9.2.11.1, JDK 13 saxon-he-9.8:
|
842
|
+
docker:
|
843
|
+
- image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
|
844
|
+
environment:
|
845
|
+
BUNDLE_JOBS: 3
|
846
|
+
BUNDLE_RETRY: 3
|
847
|
+
BUNDLE_PATH: vendor/bundle
|
848
|
+
JRUBY_OPTS: "--dev --debug"
|
849
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
850
|
+
steps:
|
851
|
+
- checkout
|
852
|
+
- run:
|
853
|
+
name: Download SaxonHE9-8-0-15J.zip
|
854
|
+
command: |-
|
855
|
+
mkdir -p /tmp/saxon
|
856
|
+
cd /tmp/saxon
|
857
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
858
|
+
unzip SaxonHE9-8-0-15J.zip
|
859
|
+
rm -f SaxonHE9-8-0-15J.zip
|
860
|
+
- run:
|
861
|
+
name: Bundle Install
|
862
|
+
command: bundle check || bundle install
|
863
|
+
- run:
|
864
|
+
name: Run the tests
|
865
|
+
command: |-
|
866
|
+
mkdir -p /tmp/test-results
|
867
|
+
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
|
868
|
+
rm -rf coverage
|
869
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
870
|
+
- store_test_results:
|
871
|
+
path: "/tmp/test-results"
|
872
|
+
- store_artifacts:
|
873
|
+
path: "/tmp/test-results"
|
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
|
909
|
+
JRuby 9.2.11.1, JDK 13:
|
910
|
+
docker:
|
911
|
+
- image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
|
912
|
+
environment:
|
913
|
+
BUNDLE_JOBS: 3
|
914
|
+
BUNDLE_RETRY: 3
|
915
|
+
BUNDLE_PATH: vendor/bundle
|
916
|
+
JRUBY_OPTS: "--dev --debug"
|
917
|
+
steps:
|
918
|
+
- checkout
|
919
|
+
- run:
|
920
|
+
name: Bundle Install
|
921
|
+
command: bundle check || bundle install
|
922
|
+
- run:
|
923
|
+
name: Run the tests
|
924
|
+
command: |-
|
925
|
+
mkdir -p /tmp/test-results
|
926
|
+
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
|
927
|
+
rm -rf coverage
|
928
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
929
|
+
- store_test_results:
|
930
|
+
path: "/tmp/test-results"
|
931
|
+
- store_artifacts:
|
932
|
+
path: "/tmp/test-results"
|
933
|
+
destination: test-results
|
934
|
+
JRuby 9.2.12.0, JDK 8 saxon-he-9.8:
|
935
|
+
docker:
|
936
|
+
- image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
|
937
|
+
environment:
|
938
|
+
BUNDLE_JOBS: 3
|
939
|
+
BUNDLE_RETRY: 3
|
940
|
+
BUNDLE_PATH: vendor/bundle
|
941
|
+
JRUBY_OPTS: "--dev --debug"
|
942
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
943
|
+
steps:
|
944
|
+
- checkout
|
945
|
+
- run:
|
946
|
+
name: Download SaxonHE9-8-0-15J.zip
|
947
|
+
command: |-
|
948
|
+
mkdir -p /tmp/saxon
|
949
|
+
cd /tmp/saxon
|
950
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
951
|
+
unzip SaxonHE9-8-0-15J.zip
|
952
|
+
rm -f SaxonHE9-8-0-15J.zip
|
953
|
+
- run:
|
954
|
+
name: Bundle Install
|
955
|
+
command: bundle check || bundle install
|
956
|
+
- run:
|
957
|
+
name: Install Code Climate Test Reporter
|
958
|
+
command: |
|
959
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
960
|
+
chmod +x ./cc-test-reporter
|
961
|
+
- run:
|
962
|
+
name: Run the tests, and upload coverage data to Code Climate
|
963
|
+
command: |-
|
964
|
+
./cc-test-reporter before-build
|
965
|
+
mkdir -p /tmp/test-results
|
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
|
967
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading-alt-saxon-he-9.8.json"; fi
|
968
|
+
rm -rf coverage
|
969
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
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
|
1017
|
+
- persist_to_workspace:
|
1018
|
+
root: "~/project"
|
1019
|
+
paths:
|
1020
|
+
- cc-coverage*
|
1021
|
+
- store_test_results:
|
1022
|
+
path: "/tmp/test-results"
|
1023
|
+
- store_artifacts:
|
1024
|
+
path: "/tmp/test-results"
|
1025
|
+
destination: test-results
|
1026
|
+
JRuby 9.2.12.0, JDK 8:
|
1027
|
+
docker:
|
1028
|
+
- image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
|
1029
|
+
environment:
|
1030
|
+
BUNDLE_JOBS: 3
|
1031
|
+
BUNDLE_RETRY: 3
|
1032
|
+
BUNDLE_PATH: vendor/bundle
|
1033
|
+
JRUBY_OPTS: "--dev --debug"
|
1034
|
+
steps:
|
1035
|
+
- checkout
|
1036
|
+
- run:
|
1037
|
+
name: Bundle Install
|
1038
|
+
command: bundle check || bundle install
|
1039
|
+
- run:
|
1040
|
+
name: Install Code Climate Test Reporter
|
1041
|
+
command: |
|
1042
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
1043
|
+
chmod +x ./cc-test-reporter
|
1044
|
+
- run:
|
1045
|
+
name: Run the tests, and upload coverage data to Code Climate
|
1046
|
+
command: |-
|
1047
|
+
./cc-test-reporter before-build
|
1048
|
+
mkdir -p /tmp/test-results
|
1049
|
+
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
|
1050
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading.json"; fi
|
1051
|
+
rm -rf coverage
|
1052
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1053
|
+
if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main.json"; fi
|
1054
|
+
- persist_to_workspace:
|
1055
|
+
root: "~/project"
|
1056
|
+
paths:
|
1057
|
+
- cc-coverage*
|
1058
|
+
- store_test_results:
|
1059
|
+
path: "/tmp/test-results"
|
1060
|
+
- store_artifacts:
|
1061
|
+
path: "/tmp/test-results"
|
1062
|
+
destination: test-results
|
1063
|
+
JRuby 9.2.12.0, JDK 11 saxon-he-9.8:
|
1064
|
+
docker:
|
1065
|
+
- image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
|
1066
|
+
environment:
|
1067
|
+
BUNDLE_JOBS: 3
|
1068
|
+
BUNDLE_RETRY: 3
|
1069
|
+
BUNDLE_PATH: vendor/bundle
|
1070
|
+
JRUBY_OPTS: "--dev --debug"
|
1071
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
1072
|
+
steps:
|
1073
|
+
- checkout
|
1074
|
+
- run:
|
1075
|
+
name: Download SaxonHE9-8-0-15J.zip
|
1076
|
+
command: |-
|
1077
|
+
mkdir -p /tmp/saxon
|
1078
|
+
cd /tmp/saxon
|
1079
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
1080
|
+
unzip SaxonHE9-8-0-15J.zip
|
1081
|
+
rm -f SaxonHE9-8-0-15J.zip
|
1082
|
+
- run:
|
1083
|
+
name: Bundle Install
|
1084
|
+
command: bundle check || bundle install
|
1085
|
+
- run:
|
1086
|
+
name: Run the tests
|
1087
|
+
command: |-
|
1088
|
+
mkdir -p /tmp/test-results
|
1089
|
+
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
|
1090
|
+
rm -rf coverage
|
1091
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1092
|
+
- store_test_results:
|
1093
|
+
path: "/tmp/test-results"
|
1094
|
+
- store_artifacts:
|
1095
|
+
path: "/tmp/test-results"
|
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
|
1131
|
+
JRuby 9.2.12.0, JDK 11:
|
1132
|
+
docker:
|
1133
|
+
- image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
|
1134
|
+
environment:
|
1135
|
+
BUNDLE_JOBS: 3
|
1136
|
+
BUNDLE_RETRY: 3
|
1137
|
+
BUNDLE_PATH: vendor/bundle
|
1138
|
+
JRUBY_OPTS: "--dev --debug"
|
1139
|
+
steps:
|
1140
|
+
- checkout
|
1141
|
+
- run:
|
1142
|
+
name: Bundle Install
|
1143
|
+
command: bundle check || bundle install
|
1144
|
+
- run:
|
1145
|
+
name: Run the tests
|
1146
|
+
command: |-
|
1147
|
+
mkdir -p /tmp/test-results
|
1148
|
+
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
|
1149
|
+
rm -rf coverage
|
1150
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1151
|
+
- store_test_results:
|
1152
|
+
path: "/tmp/test-results"
|
1153
|
+
- store_artifacts:
|
1154
|
+
path: "/tmp/test-results"
|
1155
|
+
destination: test-results
|
1156
|
+
JRuby 9.2.12.0, JDK 13 saxon-he-9.8:
|
1157
|
+
docker:
|
1158
|
+
- image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
|
1159
|
+
environment:
|
1160
|
+
BUNDLE_JOBS: 3
|
1161
|
+
BUNDLE_RETRY: 3
|
1162
|
+
BUNDLE_PATH: vendor/bundle
|
1163
|
+
JRUBY_OPTS: "--dev --debug"
|
1164
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
1165
|
+
steps:
|
1166
|
+
- checkout
|
1167
|
+
- run:
|
1168
|
+
name: Download SaxonHE9-8-0-15J.zip
|
1169
|
+
command: |-
|
1170
|
+
mkdir -p /tmp/saxon
|
1171
|
+
cd /tmp/saxon
|
1172
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
1173
|
+
unzip SaxonHE9-8-0-15J.zip
|
1174
|
+
rm -f SaxonHE9-8-0-15J.zip
|
1175
|
+
- run:
|
1176
|
+
name: Bundle Install
|
1177
|
+
command: bundle check || bundle install
|
1178
|
+
- run:
|
1179
|
+
name: Run the tests
|
1180
|
+
command: |-
|
1181
|
+
mkdir -p /tmp/test-results
|
1182
|
+
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
|
1183
|
+
rm -rf coverage
|
1184
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1185
|
+
- store_test_results:
|
1186
|
+
path: "/tmp/test-results"
|
1187
|
+
- store_artifacts:
|
1188
|
+
path: "/tmp/test-results"
|
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
|
1224
|
+
JRuby 9.2.12.0, JDK 13:
|
1225
|
+
docker:
|
1226
|
+
- image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
|
1227
|
+
environment:
|
1228
|
+
BUNDLE_JOBS: 3
|
1229
|
+
BUNDLE_RETRY: 3
|
1230
|
+
BUNDLE_PATH: vendor/bundle
|
1231
|
+
JRUBY_OPTS: "--dev --debug"
|
1232
|
+
steps:
|
1233
|
+
- checkout
|
1234
|
+
- run:
|
1235
|
+
name: Bundle Install
|
1236
|
+
command: bundle check || bundle install
|
1237
|
+
- run:
|
1238
|
+
name: Run the tests
|
1239
|
+
command: |-
|
1240
|
+
mkdir -p /tmp/test-results
|
1241
|
+
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
|
1242
|
+
rm -rf coverage
|
1243
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1244
|
+
- store_test_results:
|
1245
|
+
path: "/tmp/test-results"
|
1246
|
+
- store_artifacts:
|
1247
|
+
path: "/tmp/test-results"
|
1248
|
+
destination: test-results
|
1249
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 saxon-he-9.8:
|
1250
|
+
docker:
|
1251
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
|
1252
|
+
environment:
|
1253
|
+
BUNDLE_JOBS: 3
|
1254
|
+
BUNDLE_RETRY: 3
|
1255
|
+
BUNDLE_PATH: vendor/bundle
|
1256
|
+
JRUBY_OPTS: "--dev --debug"
|
1257
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
1258
|
+
steps:
|
1259
|
+
- checkout
|
1260
|
+
- run:
|
1261
|
+
name: Download SaxonHE9-8-0-15J.zip
|
1262
|
+
command: |-
|
1263
|
+
mkdir -p /tmp/saxon
|
1264
|
+
cd /tmp/saxon
|
1265
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
1266
|
+
unzip SaxonHE9-8-0-15J.zip
|
1267
|
+
rm -f SaxonHE9-8-0-15J.zip
|
1268
|
+
- run:
|
1269
|
+
name: Bundle Install
|
1270
|
+
command: bundle check || bundle install
|
1271
|
+
- run:
|
1272
|
+
name: Run the tests
|
1273
|
+
command: |-
|
1274
|
+
mkdir -p /tmp/test-results
|
1275
|
+
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
|
1276
|
+
rm -rf coverage
|
1277
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1278
|
+
- store_test_results:
|
1279
|
+
path: "/tmp/test-results"
|
1280
|
+
- store_artifacts:
|
1281
|
+
path: "/tmp/test-results"
|
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
|
1317
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8:
|
1318
|
+
docker:
|
1319
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
|
1320
|
+
environment:
|
1321
|
+
BUNDLE_JOBS: 3
|
1322
|
+
BUNDLE_RETRY: 3
|
1323
|
+
BUNDLE_PATH: vendor/bundle
|
1324
|
+
JRUBY_OPTS: "--dev --debug"
|
1325
|
+
steps:
|
1326
|
+
- checkout
|
1327
|
+
- run:
|
1328
|
+
name: Bundle Install
|
1329
|
+
command: bundle check || bundle install
|
1330
|
+
- run:
|
1331
|
+
name: Run the tests
|
1332
|
+
command: |-
|
1333
|
+
mkdir -p /tmp/test-results
|
1334
|
+
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
|
1335
|
+
rm -rf coverage
|
1336
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1337
|
+
- store_test_results:
|
1338
|
+
path: "/tmp/test-results"
|
1339
|
+
- store_artifacts:
|
1340
|
+
path: "/tmp/test-results"
|
1341
|
+
destination: test-results
|
1342
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 saxon-he-9.8:
|
1343
|
+
docker:
|
1344
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
|
1345
|
+
environment:
|
1346
|
+
BUNDLE_JOBS: 3
|
1347
|
+
BUNDLE_RETRY: 3
|
1348
|
+
BUNDLE_PATH: vendor/bundle
|
1349
|
+
JRUBY_OPTS: "--dev --debug"
|
1350
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
1351
|
+
steps:
|
1352
|
+
- checkout
|
1353
|
+
- run:
|
1354
|
+
name: Download SaxonHE9-8-0-15J.zip
|
1355
|
+
command: |-
|
1356
|
+
mkdir -p /tmp/saxon
|
1357
|
+
cd /tmp/saxon
|
1358
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
1359
|
+
unzip SaxonHE9-8-0-15J.zip
|
1360
|
+
rm -f SaxonHE9-8-0-15J.zip
|
1361
|
+
- run:
|
1362
|
+
name: Bundle Install
|
1363
|
+
command: bundle check || bundle install
|
1364
|
+
- run:
|
1365
|
+
name: Run the tests
|
1366
|
+
command: |-
|
1367
|
+
mkdir -p /tmp/test-results
|
1368
|
+
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
|
1369
|
+
rm -rf coverage
|
1370
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1371
|
+
- store_test_results:
|
1372
|
+
path: "/tmp/test-results"
|
1373
|
+
- store_artifacts:
|
1374
|
+
path: "/tmp/test-results"
|
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
|
1410
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11:
|
1411
|
+
docker:
|
1412
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
|
1413
|
+
environment:
|
1414
|
+
BUNDLE_JOBS: 3
|
1415
|
+
BUNDLE_RETRY: 3
|
1416
|
+
BUNDLE_PATH: vendor/bundle
|
1417
|
+
JRUBY_OPTS: "--dev --debug"
|
1418
|
+
steps:
|
1419
|
+
- checkout
|
1420
|
+
- run:
|
1421
|
+
name: Bundle Install
|
1422
|
+
command: bundle check || bundle install
|
1423
|
+
- run:
|
1424
|
+
name: Run the tests
|
1425
|
+
command: |-
|
1426
|
+
mkdir -p /tmp/test-results
|
1427
|
+
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
|
1428
|
+
rm -rf coverage
|
1429
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1430
|
+
- store_test_results:
|
1431
|
+
path: "/tmp/test-results"
|
1432
|
+
- store_artifacts:
|
1433
|
+
path: "/tmp/test-results"
|
1434
|
+
destination: test-results
|
1435
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 saxon-he-9.8:
|
1436
|
+
docker:
|
1437
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
|
1438
|
+
environment:
|
1439
|
+
BUNDLE_JOBS: 3
|
1440
|
+
BUNDLE_RETRY: 3
|
1441
|
+
BUNDLE_PATH: vendor/bundle
|
1442
|
+
JRUBY_OPTS: "--dev --debug"
|
1443
|
+
ALTERNATE_SAXON_HOME: "/tmp/saxon"
|
1444
|
+
steps:
|
1445
|
+
- checkout
|
1446
|
+
- run:
|
1447
|
+
name: Download SaxonHE9-8-0-15J.zip
|
1448
|
+
command: |-
|
1449
|
+
mkdir -p /tmp/saxon
|
1450
|
+
cd /tmp/saxon
|
1451
|
+
curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
|
1452
|
+
unzip SaxonHE9-8-0-15J.zip
|
1453
|
+
rm -f SaxonHE9-8-0-15J.zip
|
1454
|
+
- run:
|
1455
|
+
name: Bundle Install
|
1456
|
+
command: bundle check || bundle install
|
1457
|
+
- run:
|
1458
|
+
name: Run the tests
|
1459
|
+
command: |-
|
1460
|
+
mkdir -p /tmp/test-results
|
1461
|
+
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
|
1462
|
+
rm -rf coverage
|
1463
|
+
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
1464
|
+
- store_test_results:
|
1465
|
+
path: "/tmp/test-results"
|
1466
|
+
- store_artifacts:
|
1467
|
+
path: "/tmp/test-results"
|
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
|
382
1497
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
383
1498
|
- store_test_results:
|
384
1499
|
path: "/tmp/test-results"
|
385
1500
|
- store_artifacts:
|
386
1501
|
path: "/tmp/test-results"
|
387
1502
|
destination: test-results
|
388
|
-
JRuby 9.2.
|
1503
|
+
JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13:
|
389
1504
|
docker:
|
390
|
-
- image: fidothe/circleci:jruby-9.2.
|
1505
|
+
- image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
|
391
1506
|
environment:
|
392
1507
|
BUNDLE_JOBS: 3
|
393
1508
|
BUNDLE_RETRY: 3
|
@@ -402,6 +1517,8 @@ jobs:
|
|
402
1517
|
name: Run the tests
|
403
1518
|
command: |-
|
404
1519
|
mkdir -p /tmp/test-results
|
1520
|
+
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
|
1521
|
+
rm -rf coverage
|
405
1522
|
bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
|
406
1523
|
- store_test_results:
|
407
1524
|
path: "/tmp/test-results"
|
@@ -429,21 +1546,56 @@ workflows:
|
|
429
1546
|
version: 2
|
430
1547
|
build_and_test:
|
431
1548
|
jobs:
|
432
|
-
- 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
|
433
1551
|
- JRuby 9.2.9.0, JDK 8
|
434
|
-
- 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
|
435
1554
|
- JRuby 9.2.9.0, JDK 11
|
436
|
-
- 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
|
437
1557
|
- JRuby 9.2.9.0, JDK 13
|
438
|
-
- 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
|
439
1560
|
- 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
|
1561
|
+
- JRuby 9.2.10.0, JDK 8 saxon-he-9.8
|
1562
|
+
- JRuby 9.2.10.0, JDK 8 saxon-he-10.2
|
1563
|
+
- JRuby 9.2.10.0, JDK 8
|
1564
|
+
- JRuby 9.2.10.0, JDK 11 saxon-he-9.8
|
1565
|
+
- JRuby 9.2.10.0, JDK 11 saxon-he-10.2
|
1566
|
+
- JRuby 9.2.10.0, JDK 11
|
1567
|
+
- JRuby 9.2.10.0, JDK 13 saxon-he-9.8
|
1568
|
+
- JRuby 9.2.10.0, JDK 13 saxon-he-10.2
|
1569
|
+
- JRuby 9.2.10.0, JDK 13
|
1570
|
+
- JRuby 9.2.11.1, JDK 8 saxon-he-9.8
|
1571
|
+
- JRuby 9.2.11.1, JDK 8 saxon-he-10.2
|
1572
|
+
- JRuby 9.2.11.1, JDK 8
|
1573
|
+
- JRuby 9.2.11.1, JDK 11 saxon-he-9.8
|
1574
|
+
- JRuby 9.2.11.1, JDK 11 saxon-he-10.2
|
1575
|
+
- JRuby 9.2.11.1, JDK 11
|
1576
|
+
- JRuby 9.2.11.1, JDK 13 saxon-he-9.8
|
1577
|
+
- JRuby 9.2.11.1, JDK 13 saxon-he-10.2
|
1578
|
+
- JRuby 9.2.11.1, JDK 13
|
1579
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-9.8
|
1580
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-10.2
|
1581
|
+
- JRuby 9.2.12.0, JDK 8
|
1582
|
+
- JRuby 9.2.12.0, JDK 11 saxon-he-9.8
|
1583
|
+
- JRuby 9.2.12.0, JDK 11 saxon-he-10.2
|
1584
|
+
- JRuby 9.2.12.0, JDK 11
|
1585
|
+
- JRuby 9.2.12.0, JDK 13 saxon-he-9.8
|
1586
|
+
- JRuby 9.2.12.0, JDK 13 saxon-he-10.2
|
1587
|
+
- JRuby 9.2.12.0, JDK 13
|
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
|
1590
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8
|
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
|
1593
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11
|
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
|
1596
|
+
- JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13
|
446
1597
|
- Report test coverage to Code Climate:
|
447
1598
|
requires:
|
448
|
-
- JRuby 9.2.
|
449
|
-
- JRuby 9.2.
|
1599
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-9.8
|
1600
|
+
- JRuby 9.2.12.0, JDK 8 saxon-he-10.2
|
1601
|
+
- JRuby 9.2.12.0, JDK 8
|