diff --git a/.github/workflows/build-publish-linux.yml b/.github/workflows/build-publish.yml similarity index 90% rename from .github/workflows/build-publish-linux.yml rename to .github/workflows/build-publish.yml index a6da0cab3..bf21ff8b8 100644 --- a/.github/workflows/build-publish-linux.yml +++ b/.github/workflows/build-publish.yml @@ -21,7 +21,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04] #, macos-11] disable macos for now + os: [ubuntu-22.04] #, macos-11] - disable macos, as it's not working for a moment steps: - uses: actions/checkout@v3 @@ -36,8 +36,8 @@ jobs: uses: pypa/cibuildwheel@v2.15.0 env: # Configure cibuildwheel to build native archs, and some emulated ones - CIBW_ARCHS_LINUX: x86_64 aarch64 - CIBW_ARCHS_MACOS: x86_64 arm64 + CIBW_ARCHS_LINUX: x86_64 # aarch64 - disable ARM, as it's not working for a moment + #CIBW_ARCHS_MACOS: x86_64 arm64 - macos is disabled for a moment CIBW_BUILD_VERBOSITY: 3 # Increase verbosity to see what's going on CIBW_REPAIR_WHEEL_COMMAND_LINUX: > # Print additional info from auditwheel auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel}