diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2023-05-17 17:36:26 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2023-05-17 17:36:26 -0600 |
| commit | dd62bf8bd5f42c9bf16ba60fb40fe98ab71209c0 (patch) | |
| tree | 20a2645c7b907249872808c2a4883c96fc4f0126 | |
| parent | 3a20e100fa82ccd04b932e380b250b406c22a03f (diff) | |
remove workaround for JRuby on Windows in CI
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 641af013..8ed15535 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,8 +66,6 @@ jobs: env: BUNDLE_WITHOUT: coverage: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@v3 @@ -95,7 +93,7 @@ jobs: echo 'BUNDLE_WITHOUT=docs' >> $GITHUB_ENV echo 'COVERAGE=true' >> $GITHUB_ENV - name: Upgrade Java (JRuby for Windows) - if: matrix.os == 'windows-latest' && matrix.ruby == 'jruby-9.4.2.0' + if: matrix.os == 'windows-latest' uses: actions/setup-java@v3 with: distribution: temurin |
