diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9ea9a55710501..c120c20b6067c 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -106,7 +106,7 @@ jobs: core: name: Build Core wheels ${{ matrix.abi }} for ${{ matrix.arch }} (musllinux_1_2) - if: github.repository_owner == 'home-assistant' + if: false && github.repository_owner == 'home-assistant' needs: init runs-on: ubuntu-latest strategy: @@ -197,8 +197,27 @@ jobs: split -l $(expr $(expr $(cat requirements_all.txt | wc -l) + 1) / 3) requirements_all_wheels_${{ matrix.arch }}.txt requirements_all.txt + - name: Create requirements file for custom build + run: | + touch requirements_custom.txt + echo "cython==3.0.11 # force update" >> requirements_custom.txt + + - name: Build wheels (custom) + uses: cdce8p/wheels@master + with: + abi: ${{ matrix.abi }} + tag: musllinux_1_2 + arch: ${{ matrix.arch }} + wheels-key: ${{ secrets.WHEELS_KEY }} + env-file: true + skip-binary: cython + constraints: "homeassistant/package_constraints.txt" + requirements: "requirements_custom.txt" + verbose: true + - name: Build wheels (part 1) uses: home-assistant/wheels@2024.11.0 + if: false with: abi: ${{ matrix.abi }} tag: musllinux_1_2 @@ -213,6 +232,7 @@ jobs: - name: Build wheels (part 2) uses: home-assistant/wheels@2024.11.0 + if: false with: abi: ${{ matrix.abi }} tag: musllinux_1_2 @@ -227,6 +247,7 @@ jobs: - name: Build wheels (part 3) uses: home-assistant/wheels@2024.11.0 + if: false with: abi: ${{ matrix.abi }} tag: musllinux_1_2