Unverified Commit f4bc9a6e authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #259820 from Infinidoge/feat/temurin-bin-21

temurin-bin: init at 21
parents 0891a909 d849c98d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ import re
import requests
import sys

feature_versions = (8, 11, 16, 17, 18, 19, 20)
feature_versions = (8, 11, 16, 17, 18, 19, 20, 21)
oses = ("mac", "linux", "alpine-linux")
types = ("jre", "jdk")
impls = ("hotspot")
+3 −0
Original line number Diff line number Diff line
@@ -22,4 +22,7 @@ in

  jdk-20 = common { sourcePerArch = sources.jdk.openjdk20; };
  jre-20 = common { sourcePerArch = sources.jre.openjdk20; };

  jdk-21 = common { sourcePerArch = sources.jdk.openjdk21; };
  jre-21 = common { sourcePerArch = sources.jre.openjdk21; };
}
+3 −0
Original line number Diff line number Diff line
@@ -23,4 +23,7 @@ in

  jdk-20 = common { sourcePerArch = sources.jdk.openjdk20; };
  jre-20 = common { sourcePerArch = sources.jre.openjdk20; };

  jdk-21 = common { sourcePerArch = sources.jdk.openjdk21; };
  jre-21 = common { sourcePerArch = sources.jre.openjdk21; };
}
+322 −214

File changed.

Preview size limit exceeded, changes collapsed.

+3 −0
Original line number Diff line number Diff line
@@ -15455,6 +15455,9 @@ with pkgs;
  ### DEVELOPMENT / COMPILERS
  temurin-bin-21 = javaPackages.compiler.temurin-bin.jdk-21;
  temurin-jre-bin-21 = javaPackages.compiler.temurin-bin.jre-21;
  temurin-bin-20 = javaPackages.compiler.temurin-bin.jdk-20;
  temurin-jre-bin-20 = javaPackages.compiler.temurin-bin.jre-20;
Loading