-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from djspiewak/bug/graalvm-version-spec
Fixed graalvm version specs
- Loading branch information
Showing
6 changed files
with
29 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
scala: [2.12.15] | ||
java: [temurin@11] | ||
java: [temurin@11, graal_20.3.1@11] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Ignore line ending differences in git | ||
|
@@ -43,6 +43,13 @@ jobs: | |
distribution: temurin | ||
java-version: 11 | ||
|
||
- name: Setup GraalVM (graal_20.3.1@11) | ||
if: matrix.java == 'graal_20.3.1@11' | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
graalvm: 20.3.1 | ||
java: java11 | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
with: | ||
|
@@ -99,6 +106,13 @@ jobs: | |
distribution: temurin | ||
java-version: 11 | ||
|
||
- name: Setup GraalVM (graal_20.3.1@11) | ||
if: matrix.java == 'graal_20.3.1@11' | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
graalvm: 20.3.1 | ||
java: java11 | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.13.6, 2.12.15] | ||
java: [temurin@11, 'graal:21.1.0@8'] | ||
java: [temurin@11, graal_21.1.0@8] | ||
test: [this, is] | ||
include: | ||
- test: this | ||
|
@@ -46,12 +46,12 @@ jobs: | |
distribution: temurin | ||
java-version: 11 | ||
|
||
- name: 'Setup GraalVM (graal:21.1.0@8)' | ||
if: 'matrix.java == ''graal:21.1.0@8''' | ||
- name: Setup GraalVM (graal_21.1.0@8) | ||
if: matrix.java == 'graal_21.1.0@8' | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
graalvm: 21.1.0 | ||
java: 8 | ||
java: java8 | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
|
@@ -105,12 +105,12 @@ jobs: | |
distribution: temurin | ||
java-version: 11 | ||
|
||
- name: 'Setup GraalVM (graal:21.1.0@8)' | ||
if: 'matrix.java == ''graal:21.1.0@8''' | ||
- name: Setup GraalVM (graal_21.1.0@8) | ||
if: matrix.java == 'graal_21.1.0@8' | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
graalvm: 21.1.0 | ||
java: 8 | ||
java: java8 | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -519,7 +519,7 @@ class GenerativePluginSpec extends Specification { | |
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.12.15, 2.13.6] | ||
java: [temurin@11, 'graal:20.0.0@8'] | ||
java: [temurin@11, graal_20.0.0@8] | ||
runs-on: $${{ matrix.os }} | ||
steps: | ||
- name: Setup Java (temurin@11) | ||
|
@@ -529,12 +529,12 @@ class GenerativePluginSpec extends Specification { | |
distribution: temurin | ||
java-version: 11 | ||
|
||
- name: 'Setup GraalVM (graal:20.0.0@8)' | ||
if: 'matrix.java == ''graal:20.0.0@8''' | ||
- name: Setup GraalVM (graal_20.0.0@8) | ||
if: matrix.java == 'graal_20.0.0@8' | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
graalvm: 20.0.0 | ||
java: 8""" | ||
java: java8""" | ||
} | ||
|
||
"compile a job with environment variables, conditional, and needs with an sbt step" in { | ||
|