From ca48e0bd2dc20e1261d0bd45fa68ee852777f5b9 Mon Sep 17 00:00:00 2001 From: Alina Kladieva Date: Wed, 10 Apr 2024 17:12:08 +0200 Subject: [PATCH] [GHA] Workaround for the latest h5py issue on arm (#23959) After the latest release https://pypi.org/project/h5py/#history stopped being installed as a Python module on arm - it tries to be built from sources and there is a missing dependency for this. Trying to fix it without restricting the module version... --- .github/workflows/linux_arm64.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/linux_arm64.yml b/.github/workflows/linux_arm64.yml index 3e0e13d21a7..eee8dc9c5e5 100644 --- a/.github/workflows/linux_arm64.yml +++ b/.github/workflows/linux_arm64.yml @@ -125,6 +125,9 @@ jobs: update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 30 update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 30 + # For building the latest h5py + apt install --assume-yes --no-install-recommends libhdf5-dev + - name: Install sccache uses: mozilla-actions/sccache-action@v0.0.4 with: