From 402e73ab68262bc7eb678f253ecbb742b205d123 Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 9 Sep 2024 23:20:31 +0200 Subject: [PATCH] ci: re-disable macos always ratelimited, makes all builds fail and debugging impossible ughhh --- .github/workflows/javascript.yml | 4 +-- .github/workflows/python.yml | 58 ++++++++++++++++---------------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/javascript.yml b/.github/workflows/javascript.yml index e2390a9..d367f17 100644 --- a/.github/workflows/javascript.yml +++ b/.github/workflows/javascript.yml @@ -20,8 +20,8 @@ jobs: target: linux-x64-gnu - runner: windows-latest target: win32-x64 - - runner: macos-14 - target: darwin-arm64 + #- runner: macos-14 + # target: darwin-arm64 steps: - uses: actions/checkout@v4 - uses: arduino/setup-protoc@v3 diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 8055b09..8bc8819 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -112,34 +112,34 @@ jobs: name: codemp-py-windows-${{ matrix.platform.target }} path: dist/py/build - macos: - runs-on: ${{ matrix.platform.runner }} - strategy: - matrix: - platform: - #- runner: macos-12 - # target: x86_64 - - runner: macos-14 - target: aarch64 - steps: - - uses: actions/checkout@v4 - - uses: arduino/setup-protoc@v3 - - uses: actions/setup-python@v5 - with: - python-version: 3.x - - name: Build wheels - uses: PyO3/maturin-action@v1 - with: - working-directory: dist/py - target: ${{ matrix.platform.target }} - container: 'off' - args: --release --out ./build - sccache: 'true' - - name: Upload wheels - uses: actions/upload-artifact@v4 - with: - name: codemp-py-macos-${{ matrix.platform.target }} - path: dist/py/build + #macos: + # runs-on: ${{ matrix.platform.runner }} + # strategy: + # matrix: + # platform: + # #- runner: macos-12 + # # target: x86_64 + # - runner: macos-14 + # target: aarch64 + # steps: + # - uses: actions/checkout@v4 + # - uses: arduino/setup-protoc@v3 + # - uses: actions/setup-python@v5 + # with: + # python-version: 3.x + # - name: Build wheels + # uses: PyO3/maturin-action@v1 + # with: + # working-directory: dist/py + # target: ${{ matrix.platform.target }} + # container: 'off' + # args: --release --out ./build + # sccache: 'true' + # - name: Upload wheels + # uses: actions/upload-artifact@v4 + # with: + # name: codemp-py-macos-${{ matrix.platform.target }} + # path: dist/py/build sdist: runs-on: ubuntu-latest @@ -159,7 +159,7 @@ jobs: release: runs-on: ubuntu-latest - needs: [linux, windows, macos, sdist] + needs: [linux, windows, sdist] steps: - uses: actions/download-artifact@v4 with: