From 50dc10a94455acf1f55f7b50001938e1e063e49e Mon Sep 17 00:00:00 2001 From: rturrado <68099809+rturrado@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:27:19 +0200 Subject: [PATCH] Trying to fix manylinux-arm64 job. --- .github/workflows/assets.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/assets.yml b/.github/workflows/assets.yml index 6c9cc0c..519d4dd 100644 --- a/.github/workflows/assets.yml +++ b/.github/workflows/assets.yml @@ -81,7 +81,7 @@ jobs: NPROCS: 5 run: | export PATH="/opt/python/${{ matrix.cpython_version }}/bin:$PATH" - conan remove -c "qx/*" + conan remove -c "*/*" /opt/python/${{ matrix.cpython_version }}/bin/python setup.py bdist_wheel /opt/python/${{ matrix.cpython_version }}/bin/python -m auditwheel repair pybuild/dist/*.whl - name: Wheel path @@ -141,9 +141,12 @@ jobs: env: QX_CPU_COMPATIBILITY_MODE: "True" NPROCS: 5 + # We clean the Conan cache as a preventive measure for our runs in self-hosted runners + # Self-hosted runners use containers that cache Conan packages from previous runs, + # and that can cause different type of problems run: | export PATH="/opt/python/${{ matrix.cpython_version }}/bin:$PATH" - conan remove -c "qx/*" + conan remove -c "*/*" python setup.py bdist_wheel python -m auditwheel repair pybuild/dist/*.whl - name: Wheel path