Skip to content

Commit

Permalink
#105 Java: both x64 and x86
Browse files Browse the repository at this point in the history
  • Loading branch information
spoltier committed Dec 17, 2020
1 parent 0c0c0aa commit 019a0e3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,19 @@ jobs:
if: matrix.config.pkgrepo == ''
run: echo 'RSPM=https://cloud.r-project.org' >> $GITHUB_ENV

- name: Setup java
- name: Setup java (x86)
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.config.java }}
java-package: jdk
architecture: x86

- name: Setup java (x64)
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.config.java }}
java-package: jdk
architecture: x64

- name: Set up R ${{ matrix.config.r-version }}
uses: r-lib/actions/setup-r@v1
Expand Down

0 comments on commit 019a0e3

Please sign in to comment.