Skip to content

Commit

Permalink
Comment-out delocate steps in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Jun 5, 2024
1 parent 54901b1 commit 3e6aec4
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
strategy:
matrix:
host-os: ["ubuntu-latest", "macos-latest"]
# host-os: ["ubuntu-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
fail-fast: false

Expand Down Expand Up @@ -73,12 +74,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install MacOS dependencies
if: runner.os == 'macOS'
run: |
set -vxeuo pipefail
brew install tree
python -m pip install delocate
# - name: Install MacOS dependencies
# if: runner.os == 'macOS'
# run: |
# set -vxeuo pipefail
# brew install tree
# python -m pip install delocate

- name: Install dependencies
run: |
Expand All @@ -88,11 +89,11 @@ jobs:
ls -Al .
ls -Al ./dist/
- name: Delocate wheels for MacOS
if: runner.os == 'macOS'
run: |
set -vxeuo pipefail
delocate-wheelpython -v ./dist/${{ env.REPOSITORY_NAME }}-*-cp${PYTHON_VERSION_NODOT}*.whl
# - name: Delocate wheels for MacOS
# if: runner.os == 'macOS'
# run: |
# set -vxeuo pipefail
# delocate-wheelpython -v ./dist/${{ env.REPOSITORY_NAME }}-*-cp${PYTHON_VERSION_NODOT}*.whl

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 3e6aec4

Please sign in to comment.