File tree Expand file tree Collapse file tree 7 files changed +17
-17
lines changed
Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 2424 TARGZ_SHA : c00224c25b0b915f4d69929d90e59dfd66e949f79f7437d334248f7789b646f4
2525 TARGZ_FOLDER : jdk-25
2626 - runtime : valhalla
27- TARGZ_URL : https://download.java.net/java/early_access/valhalla/1/openjdk-23-valhalla +1-90_linux -x64_bin.tar.gz
28- TARGZ_SHA : 5235afaf5ecc86f2237458cf40f8ed965939372f606edbd0fc46e1ee2e69f5f5
29- TARGZ_FOLDER : jdk-23
27+ TARGZ_URL : https://download.java.net/java/early_access/valhalla/26/ 1/openjdk-26-jep401ea2 +1-1_linux -x64_bin.tar.gz
28+ TARGZ_SHA : 27d12e7ed51b0a9e94c6356adb4c42a50a8861031e1bc833b3f6b7a3212bed55
29+ TARGZ_FOLDER : jdk-26
3030 - runtime : early_access
3131 TARGZ_URL : https://download.java.net/java/early_access/jdk26/10/GPL/openjdk-26-ea+10_linux-x64_bin.tar.gz
3232 TARGZ_SHA : ' 09044ebef2f1122e484e84df3a95605462c66caf6fb6363a6b3bb70cb6dba3db'
Original file line number Diff line number Diff line change 2121 TARGZ_SHA : c00224c25b0b915f4d69929d90e59dfd66e949f79f7437d334248f7789b646f4
2222 TARGZ_FOLDER : jdk-25
2323 - runtime : valhalla
24- TARGZ_URL : https://download.java.net/java/early_access/valhalla/1/openjdk-23-valhalla +1-90_linux -x64_bin.tar.gz
25- TARGZ_SHA : 5235afaf5ecc86f2237458cf40f8ed965939372f606edbd0fc46e1ee2e69f5f5
26- TARGZ_FOLDER : jdk-23
24+ TARGZ_URL : https://download.java.net/java/early_access/valhalla/26/ 1/openjdk-26-jep401ea2 +1-1_linux -x64_bin.tar.gz
25+ TARGZ_SHA : 27d12e7ed51b0a9e94c6356adb4c42a50a8861031e1bc833b3f6b7a3212bed55
26+ TARGZ_FOLDER : jdk-26
2727 - runtime : early_access
2828 TARGZ_URL : https://download.java.net/java/early_access/jdk26/10/GPL/openjdk-26-ea+10_linux-x64_bin.tar.gz
2929 TARGZ_SHA : ' 09044ebef2f1122e484e84df3a95605462c66caf6fb6363a6b3bb70cb6dba3db'
Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ components:
5151 TARGZ_SHA : c00224c25b0b915f4d69929d90e59dfd66e949f79f7437d334248f7789b646f4
5252 TARGZ_FOLDER : jdk-25
5353 - runtime : valhalla
54- TARGZ_URL : https://download.java.net/java/early_access/valhalla/1/openjdk-23-valhalla +1-90_linux -x64_bin.tar.gz
55- TARGZ_SHA : 5235afaf5ecc86f2237458cf40f8ed965939372f606edbd0fc46e1ee2e69f5f5
56- TARGZ_FOLDER : jdk-23
54+ TARGZ_URL : https://download.java.net/java/early_access/valhalla/26/ 1/openjdk-26-jep401ea2 +1-1_linux -x64_bin.tar.gz
55+ TARGZ_SHA : 27d12e7ed51b0a9e94c6356adb4c42a50a8861031e1bc833b3f6b7a3212bed55
56+ TARGZ_FOLDER : jdk-26
5757 - runtime : early_access
5858 TARGZ_URL : https://download.java.net/java/early_access/jdk26/10/GPL/openjdk-26-ea+10_linux-x64_bin.tar.gz
5959 TARGZ_SHA : 09044ebef2f1122e484e84df3a95605462c66caf6fb6363a6b3bb70cb6dba3db
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ perform_push="${PERFORM_PUSH-false}"
88
99docker build -t " javaplayground/valhalla" \
1010 --platform linux/amd64\
11- --build-arg TARGZ_URL=https://download.java.net/java/early_access/valhalla/1/openjdk-23-valhalla +1-90_linux -x64_bin.tar.gz\
12- --build-arg TARGZ_SHA=5235afaf5ecc86f2237458cf40f8ed965939372f606edbd0fc46e1ee2e69f5f5 \
13- --build-arg TARGZ_FOLDER=jdk-23 \
11+ --build-arg TARGZ_URL=https://download.java.net/java/early_access/valhalla/26/ 1/openjdk-26-jep401ea2 +1-1_linux -x64_bin.tar.gz\
12+ --build-arg TARGZ_SHA=27d12e7ed51b0a9e94c6356adb4c42a50a8861031e1bc833b3f6b7a3212bed55 \
13+ --build-arg TARGZ_FOLDER=jdk-26 \
1414 .
1515
1616docker build -t " javaplayground/latest" \
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const DEFAULT: State = {
5555
5656const maxRelease = ( runtime : Runtime ) => {
5757 if ( runtime == Runtime . Valhalla ) {
58- return Release . Java23 ;
58+ return Release . Java26 ;
5959 }
6060 else if ( runtime == Runtime . EarlyAccess ) {
6161 return Release . Java26 ;
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export const isReleaseDefault = createSelector(
106106 releaseSelector ,
107107 ( runtime , release ) => {
108108 if ( runtime == Runtime . Valhalla ) {
109- return release == Release . Java23 ;
109+ return release == Release . Java26 ;
110110 }
111111 else if ( runtime == Runtime . EarlyAccess ) {
112112 return release == Release . Java26 ;
Original file line number Diff line number Diff line change @@ -401,9 +401,9 @@ pub enum Runtime {
401401impl Runtime {
402402 fn default_release ( & self ) -> Release {
403403 match * self {
404- Runtime :: Latest => Release :: _22 ,
405- Runtime :: Valhalla => Release :: _20 ,
406- Runtime :: EarlyAccess => Release :: _23 ,
404+ Runtime :: Latest => Release :: _25 ,
405+ Runtime :: Valhalla => Release :: _26 ,
406+ Runtime :: EarlyAccess => Release :: _26 ,
407407 }
408408 }
409409
You can’t perform that action at this time.
0 commit comments