Skip to content

Commit

Permalink
debug CI/CD matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Jun 2, 2024
1 parent 85ffaee commit c92a29f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-13, ubuntu-latest]
python-version: ["3.7", "3.12", "pypy-3.9"]
platform: [windows-latest, macos-13, macos-14, ubuntu-latest]
# python-version: ["3.7", "3.12", "pypy-3.9"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
submodules: true

- name: Install Intel MacOS dependencies
if: matrix.platform == 'macos-13'
if: matrix.os == 'macos-13'
shell: bash
run: |
brew install boost
Expand All @@ -71,7 +71,7 @@ jobs:
brew info hdf5
- name: Install ARM MacOS dependencies
if: matrix.platform == 'macos-14'
if: matrix.os == 'macos-14'
shell: bash
run: |
brew install boost
Expand All @@ -89,7 +89,7 @@ jobs:
brew info hdf5
- name: Install Windows Dependencies
if: matrix.platform == 'windows-latest'
if: matrix.os == 'windows-latest'
uses: msys2/setup-msys2@v2
with:
msystem: CLANG64
Expand All @@ -108,7 +108,7 @@ jobs:
mingw-w64-clang-x86_64-libaec
- name: Install Linux Dependencies
if: matrix.platform == 'ubuntu-latest'
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libboost-all-dev
Expand Down

0 comments on commit c92a29f

Please sign in to comment.