From 9b9b8b68fd0518c063566a8889354afe3340b961 Mon Sep 17 00:00:00 2001 From: Christopher Schwan Date: Fri, 28 Jun 2024 10:35:20 +0200 Subject: [PATCH] Debug LHAPDF installation on Windows --- .github/workflows/cli-wheels.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cli-wheels.yml b/.github/workflows/cli-wheels.yml index bee07acc..9492077d 100644 --- a/.github/workflows/cli-wheels.yml +++ b/.github/workflows/cli-wheels.yml @@ -32,6 +32,8 @@ jobs: mingw-w64-ucrt-x86_64-make autoconf python3 + curl + tar - uses: actions/setup-python@v5 with: # WARNING: be careful with the ordering - the last version is the @@ -48,10 +50,12 @@ jobs: 3.11 3.12 3.10 - - name: Install non-Rust dependencies + - name: Install LHAPDF run: | - python3 maintainer/install_lhapdf.py || true - cat LHAPDF-6.5.3/config.log + curl "https://lhapdf.hepforge.org/downloads/?f=LHAPDF-6.5.4.tar.gz" | tar xzf - + cd LHAPDF-6.5.4 + ./configure || true + cat LHAPDF-6.5.4/config.log - name: Build wheels uses: PyO3/maturin-action@v1 with: