Skip to content

Commit

Permalink
Removes action condition
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Mar 11, 2024
1 parent ff2f352 commit 4bc068d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on: [push, pull_request]
jobs:
build_ubuntu_wheels:
name: Build wheels on ${{ matrix.os }} for Python ${{ matrix.pyversions }}
if: ${{ matrix.os }} == 'macos-14'
# if: ${{ matrix.os }} == 'macos-14'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-12, macos-14]
os: [macos-14] #[ubuntu-latest, macos-13, macos-12, macos-14]
pyversions: ['3.11', '3.10'] #, '3.9', '3.8', '3.7',]

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

- name: Output runner info
run: |
runner.os
runner.name
runner.cpu-model
runner.release
- name: Symlink gfortran for macOS
if: runner.os == 'macOS'
Expand Down

0 comments on commit 4bc068d

Please sign in to comment.