Skip to content

Commit 3c14ee0

Browse files
committed
Switch JDK10 to BuildJDK10
1 parent 517ff28 commit 3c14ee0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Jenkinsfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ pipeline {
1414
sh "mkdir -p /home/jenkins/workspace/" + JOB_NAME + "/build"
1515
sh "chmod 777 /home/jenkins/workspace/" + JOB_NAME + "/build"
1616
sh "cd /home/jenkins/workspace/" + JOB_NAME + " && wget -nv -N https://download.java.net/java/GA/jdk9/9.0.4/binaries/openjdk-9.0.4_linux-x64_bin.tar.gz"
17+
sh "cd /home/jenkins/workspace/" + JOB_NAME + " && wget -nv -N https://download.java.net/java/GA/jdk10/10/binaries/openjdk-10_linux-x64_bin.tar.gz"
1718
sh "cp /home/jenkins/workspace/" + JOB_NAME + "/openjdk-9.0.4_linux-x64_bin.tar.gz /home/jenkins/workspace/" + JOB_NAME + "/build/"
19+
sh "cp /home/jenkins/workspace/" + JOB_NAME + "/openjdk-10_linux-x64_bin.tar.gz /home/jenkins/workspace/" + JOB_NAME + "/build/"
1820
}
1921
}
2022
stage('Build cross-compilation OS') {

scripts/config.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ elif [ "$JDKVER" == "10" ]; then
7272
PATCHVER="jdk10"
7373
AUTOGEN_STYLE="v1"
7474
AUTOGEN_PATH="./make/autoconf/autogen.sh"
75-
HOSTJDK="$BUILDDIR/jdk-9.0.4"
76-
HOSTJDK_FILE="$BUILDDIR/openjdk-9.0.4_linux-x64_bin.tar.gz"
77-
HOSTJDK_URL="https://download.java.net/java/GA/jdk9/9.0.4/binaries/openjdk-9.0.4_linux-x64_bin.tar.gz"
75+
HOSTJDK="$BUILDDIR/jdk-10"
76+
HOSTJDK_FILE="$BUILDDIR/openjdk-10_linux-x64_bin.tar.gz"
77+
HOSTJDK_URL="https://download.java.net/java/GA/jdk10/10/binaries/openjdk-10_linux-x64_bin.tar.gz"
7878

7979
# OpenJDK Master+dev
8080
elif [ "$JDKVER" == "dev" ]; then

0 commit comments

Comments
 (0)