summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2022-05-13 23:55:57 -0600
committerDan Allen <dan.j.allen@gmail.com>2022-05-14 00:26:14 -0600
commit75350c4ad7d6401f95308b0ade391e5895fff44d (patch)
tree8d2382d1550bd338f7182695e537d5d6a0ba903d /.github
parent6bce2b1f665bdf4169638079698b45e206a08840 (diff)
set JVM option to workaround Permission denied - NUL error when installing bundler gem on JRuby for Windows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b51c23a0..ddc35f66 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
- ruby: ['jruby-9.3.2.0', '2.3', '2.7', '3.0', '3.1']
+ ruby: [jruby-9.3, '2.3', '2.7', '3.0', '3.1']
asciimath-version: [~]
pygments-version: ['~> 2.0']
rouge-version: [~]
@@ -63,6 +63,8 @@ jobs:
env:
BUNDLE_WITHOUT: docs
SOURCE_DATE_EPOCH: '1521504000'
+ # work around `Permission denied - NUL' error when installing/using the bundler gem on JRuby for Windows
+ JRUBY_OPTS: '-J-Djdk.io.File.enableADS=true'
steps:
- name: Checkout
uses: actions/checkout@v2