From 68ce80df53c922e42bc97a8f225d5af8e0c211bf Mon Sep 17 00:00:00 2001 From: Hailin Wang Date: Sat, 15 Jun 2024 20:35:57 +0800 Subject: [PATCH] Update wheels.yml --- .github/workflows/wheels.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index a2cd34b2..26afe8fc 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -23,8 +23,8 @@ jobs: # macos-13 is an intel runner, macos-14 is apple silicon os: - ubuntu-latest - - macos-13 - - macos-14 + # - macos-13 + # - macos-14 fail-fast: false steps: - uses: actions/checkout@v4 @@ -32,7 +32,6 @@ jobs: fetch-depth: 0 - name: Install LLVM and Clang - id: install-llvm uses: KyleMayes/install-llvm-action@v2 with: version: "11.0" @@ -43,14 +42,14 @@ jobs: run: | sudo apt update sudo apt -y install cmake make gcc g++ python3 python3-dev pybind11-dev - + - name: Install macOS dependencies if: matrix.os == 'macos-13' || matrix.os == 'macos-14' run: | set -x brew install wget coreutils xz pybind11 git - - name: Build wheels + - name: Build Ubuntu wheels uses: pypa/cibuildwheel@v2.19.1 env: CIBW_ENVIRONMENT: LLVM_DIR=${{ runner.temp }}/llvm Clang_DIR=${{ runner.temp }}/llvm