File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,14 @@ static void main(boolean dryRun, String... args) {
109
109
exception .printStackTrace (System .err );
110
110
GitHub .error ("Error detected: " + exception );
111
111
} finally {
112
- outputs .forEach (GitHub ::setOutput );
112
+ if (dryRun ) {
113
+ System .out .println ("Dry-run of run with " + List .of (args ));
114
+ for (var output : outputs .entrySet ()) {
115
+ System .out .println (" - " + output .getKey () + '=' + output .getValue ());
116
+ }
117
+ } else {
118
+ outputs .forEach (GitHub ::setOutput );
119
+ }
113
120
}
114
121
}
115
122
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ static void checkAllOracleJDKs() {
30
30
System .out .println ();
31
31
System .out .println ("// oracle.com - latest" );
32
32
checkOracleJDK ("19" , "latest" );
33
- checkOracleJDK ("18" , "latest" );
34
33
checkOracleJDK ("17" , "latest" );
35
34
36
35
System .out .println ();
@@ -48,6 +47,10 @@ static void checkAllJavaNetJDKs() {
48
47
System .out .println ("// jdk.java.net - EA - latest" );
49
48
checkJavaNetJDK ("ea" , "latest" );
50
49
50
+ // System.out.println();
51
+ // System.out.println("// jdk.java.net - Project Generational ZGC - latest");
52
+ // checkJavaNetJDK("genzgc", "latest"); // TODO Activate on macos publication
53
+
51
54
System .out .println ();
52
55
System .out .println ("// jdk.java.net - Project Loom - latest" );
53
56
checkJavaNetJDK ("loom" , "latest" );
You can’t perform that action at this time.
0 commit comments