From 9030b7c0fb5a354a03150717f4a41aef98e71591 Mon Sep 17 00:00:00 2001 From: Auto Differentiation Dev Team <107129969+auto-differentiation-dev@users.noreply.github.com> Date: Sat, 16 Nov 2024 05:22:35 +0000 Subject: [PATCH] Using wget in QL container for reference pulling --- .github/workflows/benchmarks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 3544268a..c0030b9b 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -201,7 +201,7 @@ jobs: run: | mkdir -p QuantLib/build/test-suite/ref cd QuantLib/build/test-suite/ref - curl -L "https://xadhackathon.s3.eu-west-1.amazonaws.com/test-suite.zip" --output artifact.zip + wget "https://xadhackathon.s3.eu-west-1.amazonaws.com/test-suite.zip" --output-document artifact.zip unzip artifact.zip chmod +x quantlib-test-suite - name: Pull Reference AdjointBermudan @@ -209,7 +209,7 @@ jobs: run: | mkdir -p QuantLib/build/QuantLib-Risks-Cpp/Examples/AdjointBermudanSwaption/ref cd QuantLib/build/QuantLib-Risks-Cpp/Examples/AdjointBermudanSwaption/ref - curl -L "https://xadhackathon.s3.eu-west-1.amazonaws.com/swaption.zip" --output artifact.zip + wget "https://xadhackathon.s3.eu-west-1.amazonaws.com/swaption.zip" --output-document artifact.zip unzip artifact.zip chmod +x AdjointBermudanSwaption - name: Run Reference Test-suite