Skip to content

Commit 0a40886

Browse files
authored
Merge pull request #1157 from OpenLiberty/gkwan-ibm-patch-3
enable daily build for java 17 and 21 to run draft guides
2 parents 388adde + 7b5e66f commit 0a40886

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[
2+
"draft-guide-microprofile-telemetry-grafana-automatic",
3+
"draft-guide-microprofile-telemetry-grafana-custom"
4+
]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[
2+
"draft-guide-jakarta-concurrency"
3+
]
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import json
22

33
JSON_PATH = ".github/workflows/guides-java17.json"
4+
DRAFT_JSON_PATH = ".github/workflows/drafts-to-test-java17.json"
45

56
if __name__ == "__main__":
6-
print(json.load(open(JSON_PATH)))
7+
output = json.load(open(JSON_PATH))
8+
draft = json.load(open(DRAFT_JSON_PATH))
9+
output += draft
10+
print(output)
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import json
22

33
JSON_PATH = ".github/workflows/guides-java21.json"
4+
DRAFT_JSON_PATH = ".github/workflows/drafts-to-test-java21.json"
45

56
if __name__ == "__main__":
6-
print(json.load(open(JSON_PATH)))
7+
output = json.load(open(JSON_PATH))
8+
draft = json.load(open(DRAFT_JSON_PATH))
9+
output += draft
10+
print(output)

0 commit comments

Comments
 (0)