mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-25 08:34:47 +01:00
ci: re-disable macos
always ratelimited, makes all builds fail and debugging impossible ughhh
This commit is contained in:
parent
e28214a528
commit
402e73ab68
2 changed files with 31 additions and 31 deletions
4
.github/workflows/javascript.yml
vendored
4
.github/workflows/javascript.yml
vendored
|
@ -20,8 +20,8 @@ jobs:
|
||||||
target: linux-x64-gnu
|
target: linux-x64-gnu
|
||||||
- runner: windows-latest
|
- runner: windows-latest
|
||||||
target: win32-x64
|
target: win32-x64
|
||||||
- runner: macos-14
|
#- runner: macos-14
|
||||||
target: darwin-arm64
|
# target: darwin-arm64
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: arduino/setup-protoc@v3
|
- uses: arduino/setup-protoc@v3
|
||||||
|
|
58
.github/workflows/python.yml
vendored
58
.github/workflows/python.yml
vendored
|
@ -112,34 +112,34 @@ jobs:
|
||||||
name: codemp-py-windows-${{ matrix.platform.target }}
|
name: codemp-py-windows-${{ matrix.platform.target }}
|
||||||
path: dist/py/build
|
path: dist/py/build
|
||||||
|
|
||||||
macos:
|
#macos:
|
||||||
runs-on: ${{ matrix.platform.runner }}
|
# runs-on: ${{ matrix.platform.runner }}
|
||||||
strategy:
|
# strategy:
|
||||||
matrix:
|
# matrix:
|
||||||
platform:
|
# platform:
|
||||||
#- runner: macos-12
|
# #- runner: macos-12
|
||||||
# target: x86_64
|
# # target: x86_64
|
||||||
- runner: macos-14
|
# - runner: macos-14
|
||||||
target: aarch64
|
# target: aarch64
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
- uses: arduino/setup-protoc@v3
|
# - uses: arduino/setup-protoc@v3
|
||||||
- uses: actions/setup-python@v5
|
# - uses: actions/setup-python@v5
|
||||||
with:
|
# with:
|
||||||
python-version: 3.x
|
# python-version: 3.x
|
||||||
- name: Build wheels
|
# - name: Build wheels
|
||||||
uses: PyO3/maturin-action@v1
|
# uses: PyO3/maturin-action@v1
|
||||||
with:
|
# with:
|
||||||
working-directory: dist/py
|
# working-directory: dist/py
|
||||||
target: ${{ matrix.platform.target }}
|
# target: ${{ matrix.platform.target }}
|
||||||
container: 'off'
|
# container: 'off'
|
||||||
args: --release --out ./build
|
# args: --release --out ./build
|
||||||
sccache: 'true'
|
# sccache: 'true'
|
||||||
- name: Upload wheels
|
# - name: Upload wheels
|
||||||
uses: actions/upload-artifact@v4
|
# uses: actions/upload-artifact@v4
|
||||||
with:
|
# with:
|
||||||
name: codemp-py-macos-${{ matrix.platform.target }}
|
# name: codemp-py-macos-${{ matrix.platform.target }}
|
||||||
path: dist/py/build
|
# path: dist/py/build
|
||||||
|
|
||||||
sdist:
|
sdist:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -159,7 +159,7 @@ jobs:
|
||||||
|
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [linux, windows, macos, sdist]
|
needs: [linux, windows, sdist]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue