From 3751e8ec948ccca351162867631177559ac420e2 Mon Sep 17 00:00:00 2001 From: RYCKEBOER Thomas <37658138+thomasryck@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:51:47 +0200 Subject: [PATCH] debug ci --- .github/workflows/develop.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index be57963ef..373f4543a 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -41,16 +41,18 @@ jobs: - uses: conda-incubator/setup-miniconda@v3 if: runner.os == 'macOS' - - name: Fix permissions for conda packages directory - run: sudo chmod -R u+w /Users/runner/conda_pkgs_dir - if: runner.os == 'macOS' - + - name: Install cibuildwheel run: python -m pip install cibuildwheel==2.19.2 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse + - name: To avoid clean up error + run: conda remove libcxx + if: runner.os == 'macOS' && runner.arch == 'ARM64' + + - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl