From a042aab026f830f9d4eb47ce3bb73e3a63c8a733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Mon, 14 Jul 2025 18:07:46 +0200 Subject: [PATCH] Set OPENSSL_ENABLE_SHA1_SIGNATURES=1 in SendToHelix.proj Instead of hardcoding this in the Helix image, see https://github.com/dotnet/dotnet-buildtools-prereqs-docker/pull/1391 --- eng/SendToHelix.proj | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eng/SendToHelix.proj b/eng/SendToHelix.proj index b3628eb579b..ba5fb100bd2 100644 --- a/eng/SendToHelix.proj +++ b/eng/SendToHelix.proj @@ -78,6 +78,11 @@ $(HelixPreCommands);sudo -E -n $HELIX_CORRELATION_PAYLOAD/InstallRootCertificate.sh --service-host $(ServiceHost) --cert-file /tmp/wcfrootca.crt + + + $(HelixPreCommands);export OPENSSL_ENABLE_SHA1_SIGNATURES=1 + + $(HelixPreCommands);set PATH=%HELIX_CORRELATION_PAYLOAD%\dotnet-cli%3B%PATH%