Skip to content

Commit

Permalink
Fixes runners
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Mar 11, 2024
1 parent a2670ad commit e0fe6a5
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] #, macos-13, macos-12, macos-14,ubuntu-20.04, macos-13-arm64]
os: [ubuntu-latest] #, macos-13, macos-12, ubuntu-20.04]
pyversions: ['3.11', '3.10', '3.9', '3.8', '3.7',]

steps:
Expand All @@ -30,13 +30,6 @@ jobs:
- name: Find path to M1 gfortran
run: which gfortran-13

- name: Output runner info
run: |
runner.os
runner.name
runner.cpu-model
runner.release
- name: Symlink gfortran for macOS
if: runner.os == 'macOS'
run: |
Expand All @@ -48,10 +41,6 @@ jobs:
- name: Build wheels
run: python -m build

# - uses: actions/upload-artifact@v4
# with:
# name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}-py${{ matrix.pyversions }}
# path: dist/*.whl
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.pyversions }}
Expand All @@ -64,7 +53,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14, maxos-13-arm64]
os: [macos-14, macos-13-arm64]
pyversions: ['3.11', '3.10'] #, '3.9', '3.8', '3.7',]

steps:
Expand Down Expand Up @@ -94,10 +83,6 @@ jobs:
- name: Build wheels
run: python -m build

# - uses: actions/upload-artifact@v4
# with:
# name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}-py${{ matrix.pyversions }}
# path: dist/*.whl
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.pyversions }}
Expand All @@ -106,7 +91,7 @@ jobs:


gather_wheels:
needs: build_wheels
needs: [build_wheels, build_arm_wheels]
name: Gathers built wheels
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit e0fe6a5

Please sign in to comment.