Skip to content

Commit

Permalink
Merge remote-tracking branch 'oracle/master' into hazelcast
Browse files Browse the repository at this point in the history
  • Loading branch information
linghengqian committed Dec 7, 2022
2 parents cbbf840 + 7053700 commit 4e86fbb
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
validate-library-and-framework-list-json:
name: "📋 Checks if the json file is written according to the existing schema"
runs-on: "ubuntu-20.04"
timeout-minutes: 5
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-all-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
get-all-metadata:
name: "📋 Get list of all supported libraries"
runs-on: "ubuntu-20.04"
timeout-minutes: 5
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand All @@ -37,6 +38,7 @@ jobs:
test-all-metadata:
name: "🧪 ${{ matrix.coordinates }} (GraalVM ${{ matrix.version }} ${{ matrix.java-version }} @ ${{ matrix.os }})"
runs-on: ${{ matrix.os }}
timeout-minutes: 20
needs: get-all-metadata
strategy:
fail-fast: false
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-changed-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
get-changed-metadata:
name: "📋 Get a list of all changed libraries"
runs-on: "ubuntu-20.04"
timeout-minutes: 5
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
none-found: ${{ steps.set-matrix.outputs.none-found }}
Expand All @@ -40,6 +41,7 @@ jobs:
name: "🧪 ${{ matrix.coordinates }} (GraalVM ${{ matrix.version }} ${{ matrix.java-version }} @ ${{ matrix.os }})"
if: needs.get-changed-metadata.result == 'success' && needs.get-changed-metadata.outputs.none-found != 'true'
runs-on: ${{ matrix.os }}
timeout-minutes: 20
needs: get-changed-metadata

strategy:
Expand Down
53 changes: 52 additions & 1 deletion library-and-framework-list.json
Original file line number Diff line number Diff line change
@@ -1 +1,52 @@
[]
[
{
"artifact": "io.netty:netty5-parent",
"description": "Netty project - an event-driven asynchronous network application framework",
"details": [
{
"minimum_version": "5.0",
"metadata_locations": [
"https://github.com/netty/netty/tree/main/common/src/main/resources/META-INF/native-image"
],
"tests_locations": [
"https://github.com/netty/netty/actions"
],
"test_level": "community-tested"
}
]
},
{
"artifact": "org.apache.tomcat.embed:tomcat-embed-core",
"description": "Apache Tomcat",
"details": [
{
"minimum_version": "9.0",
"metadata_locations": [
"https://github.com/apache/tomcat/tree/9.0.x/res/graal"
],
"tests_locations": [
"https://github.com/micronaut-projects/micronaut-servlet/actions/workflows/graalvm.yml",
"https://github.com/spring-projects/spring-aot-smoke-tests"
],
"test_level": "community-tested"
}
]
},
{
"artifact": "com.datastax.oss:java-driver-core",
"description": "DataStax Java Driver for Apache Cassandra",
"details": [
{
"minimum_version": "4.1.5",
"metadata_locations": [
"https://github.com/datastax/java-driver/tree/4.x/core/src/main/resources/META-INF/native-image"
],
"tests_locations": [
"https://github.com/micronaut-projects/micronaut-cassandra/actions/workflows/graalvm.yml",
"https://github.com/spring-projects/spring-aot-smoke-tests"
],
"test_level": "community-tested"
}
]
}
]

0 comments on commit 4e86fbb

Please sign in to comment.