Skip to content

Commit 4e86fbb

Browse files
committed
Merge remote-tracking branch 'oracle/master' into hazelcast
2 parents cbbf840 + 7053700 commit 4e86fbb

File tree

4 files changed

+57
-1
lines changed

4 files changed

+57
-1
lines changed

.github/workflows/library-and-framework-list-validation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
validate-library-and-framework-list-json:
77
name: "📋 Checks if the json file is written according to the existing schema"
88
runs-on: "ubuntu-20.04"
9+
timeout-minutes: 5
910
steps:
1011
- name: "☁️ Checkout repository"
1112
uses: actions/checkout@v3

.github/workflows/test-all-metadata.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
get-all-metadata:
1919
name: "📋 Get list of all supported libraries"
2020
runs-on: "ubuntu-20.04"
21+
timeout-minutes: 5
2122
outputs:
2223
matrix: ${{ steps.set-matrix.outputs.matrix }}
2324
steps:
@@ -37,6 +38,7 @@ jobs:
3738
test-all-metadata:
3839
name: "🧪 ${{ matrix.coordinates }} (GraalVM ${{ matrix.version }} ${{ matrix.java-version }} @ ${{ matrix.os }})"
3940
runs-on: ${{ matrix.os }}
41+
timeout-minutes: 20
4042
needs: get-all-metadata
4143
strategy:
4244
fail-fast: false

.github/workflows/test-changed-metadata.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
get-changed-metadata:
1818
name: "📋 Get a list of all changed libraries"
1919
runs-on: "ubuntu-20.04"
20+
timeout-minutes: 5
2021
outputs:
2122
matrix: ${{ steps.set-matrix.outputs.matrix }}
2223
none-found: ${{ steps.set-matrix.outputs.none-found }}
@@ -40,6 +41,7 @@ jobs:
4041
name: "🧪 ${{ matrix.coordinates }} (GraalVM ${{ matrix.version }} ${{ matrix.java-version }} @ ${{ matrix.os }})"
4142
if: needs.get-changed-metadata.result == 'success' && needs.get-changed-metadata.outputs.none-found != 'true'
4243
runs-on: ${{ matrix.os }}
44+
timeout-minutes: 20
4345
needs: get-changed-metadata
4446

4547
strategy:

library-and-framework-list.json

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,52 @@
1-
[]
1+
[
2+
{
3+
"artifact": "io.netty:netty5-parent",
4+
"description": "Netty project - an event-driven asynchronous network application framework",
5+
"details": [
6+
{
7+
"minimum_version": "5.0",
8+
"metadata_locations": [
9+
"https://github.com/netty/netty/tree/main/common/src/main/resources/META-INF/native-image"
10+
],
11+
"tests_locations": [
12+
"https://github.com/netty/netty/actions"
13+
],
14+
"test_level": "community-tested"
15+
}
16+
]
17+
},
18+
{
19+
"artifact": "org.apache.tomcat.embed:tomcat-embed-core",
20+
"description": "Apache Tomcat",
21+
"details": [
22+
{
23+
"minimum_version": "9.0",
24+
"metadata_locations": [
25+
"https://github.com/apache/tomcat/tree/9.0.x/res/graal"
26+
],
27+
"tests_locations": [
28+
"https://github.com/micronaut-projects/micronaut-servlet/actions/workflows/graalvm.yml",
29+
"https://github.com/spring-projects/spring-aot-smoke-tests"
30+
],
31+
"test_level": "community-tested"
32+
}
33+
]
34+
},
35+
{
36+
"artifact": "com.datastax.oss:java-driver-core",
37+
"description": "DataStax Java Driver for Apache Cassandra",
38+
"details": [
39+
{
40+
"minimum_version": "4.1.5",
41+
"metadata_locations": [
42+
"https://github.com/datastax/java-driver/tree/4.x/core/src/main/resources/META-INF/native-image"
43+
],
44+
"tests_locations": [
45+
"https://github.com/micronaut-projects/micronaut-cassandra/actions/workflows/graalvm.yml",
46+
"https://github.com/spring-projects/spring-aot-smoke-tests"
47+
],
48+
"test_level": "community-tested"
49+
}
50+
]
51+
}
52+
]

0 commit comments

Comments
 (0)