diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2021-02-17 19:26:45 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-02-17 19:28:43 -0800 |
commit | dea894238bf404523a6c78819e242e0fb727e225 (patch) | |
tree | e9b630ac4e6a6831ce986cb642eca630def09c1e /images | |
parent | 1fc2c5f750bc90d75a3ac19fc95145a748a3811f (diff) |
[infra] Update JDK11 version for java runtime tests.
PiperOrigin-RevId: 358085809
Diffstat (limited to 'images')
-rw-r--r-- | images/runtimes/java11/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/images/runtimes/java11/Dockerfile b/images/runtimes/java11/Dockerfile index 03bc8aaf1..21f5aa3fe 100644 --- a/images/runtimes/java11/Dockerfile +++ b/images/runtimes/java11/Dockerfile @@ -11,9 +11,9 @@ RUN apt-get update && apt-get install -y \ # Download the JDK test library. WORKDIR /root RUN set -ex \ - && curl -fsSL --retry 10 -o /tmp/jdktests.tar.gz http://hg.openjdk.java.net/jdk/jdk11/archive/76072a077ee1.tar.gz/test \ + && curl -fsSL --retry 10 -o /tmp/jdktests.tar.gz http://hg.openjdk.java.net/jdk-updates/jdk11u/archive/8b3498547395.tar.gz/test \ && tar -xzf /tmp/jdktests.tar.gz \ - && mv jdk11-76072a077ee1/test test \ + && mv jdk11u-8b3498547395/test test \ && rm -f /tmp/jdktests.tar.gz # Install jtreg and add to PATH. |