From a2d1a84e95527f2fdd3a67260bab0c5080120fb3 Mon Sep 17 00:00:00 2001 From: ajayk Date: Thu, 25 May 2023 15:07:08 -0700 Subject: [PATCH] unset SOURCE_DATE_EPOCH for jdk18,19,20 --- openjdk-18.yaml | 5 ++++- openjdk-19.yaml | 5 ++++- openjdk-20.yaml | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/openjdk-18.yaml b/openjdk-18.yaml index b2bd271d712..99d4f892cd7 100644 --- a/openjdk-18.yaml +++ b/openjdk-18.yaml @@ -64,7 +64,10 @@ pipeline: with: patches: FixNullPtrCast.patch detect-busybox-date-as-gnu-date.patch - - runs: chmod +x configure + - runs: | + # does not support timestamps before 1980 + unset SOURCE_DATE_EPOCH + chmod +x configure - uses: autoconf/configure with: diff --git a/openjdk-19.yaml b/openjdk-19.yaml index 01eeb1b8292..6ebe3e6d14d 100644 --- a/openjdk-19.yaml +++ b/openjdk-19.yaml @@ -64,7 +64,10 @@ pipeline: with: patches: FixNullPtrCast.patch JDK-8282306_disable-test.patch - - runs: chmod +x configure + - runs: | + # does not support timestamps before 1980 + unset SOURCE_DATE_EPOCH + chmod +x configure - uses: autoconf/configure with: diff --git a/openjdk-20.yaml b/openjdk-20.yaml index 9f6a82bd1ad..177383e5b0f 100644 --- a/openjdk-20.yaml +++ b/openjdk-20.yaml @@ -64,7 +64,10 @@ pipeline: with: patches: FixNullPtrCast.patch JDK-8282306_disable-test.patch JDK-8299245_disable-tests.patch - - runs: chmod +x configure + - runs: | + #does not support timestamps before 1980 + unset SOURCE_DATE_EPOCH + chmod +x configure - uses: autoconf/configure with: