Skip to content

Commit

Permalink
Restore JDK19 testing for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
linghengqian authored and fniephaus committed Feb 6, 2023
1 parent 65009fb commit 82829b2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions tests/src/org.eclipse.jetty/jetty-client/11.0.12/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ dependencies {
}

graalvmNative {
binaries {
test {
buildArgs.add('--enable-preview')
}
}
agent {
defaultMode = "conditional"
modes {
Expand Down
5 changes: 5 additions & 0 deletions tests/src/org.eclipse.jetty/jetty-server/11.0.12/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ dependencies {
}

graalvmNative {
binaries {
test {
buildArgs.add('--enable-preview')
}
}
agent {
defaultMode = "conditional"
modes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ dependencies {
testImplementation 'org.assertj:assertj-core:3.22.0'
}

compileTestKotlin {
kotlinOptions.jvmTarget = "17"
}

graalvmNative {
agent {
defaultMode = "conditional"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ if (project.hasProperty("baseCommit")) {

def matrixDefault = [
"versions" : [
// [ "graalvm": "dev", "java": "dev" ], // TODO: uncomment this once we are ready to run tests on JDK19
[ "graalvm": "dev", "java": "dev" ],
[ "graalvm": "latest", "java": "17"]
],
"os" : ["ubuntu-latest"] // TODO: Add support for "windows-latest", "macos-latest"
Expand Down

0 comments on commit 82829b2

Please sign in to comment.