From c92a29f1e97ddd0d0a63f8e8c7040425c0aea714 Mon Sep 17 00:00:00 2001 From: jcschaff Date: Sun, 2 Jun 2024 16:05:17 -0400 Subject: [PATCH] debug CI/CD matrix --- .github/workflows/pip.yml | 5 +++-- .github/workflows/wheels.yml | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 0cde23e3..df42ddff 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -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 diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 897b2508..dc1df309 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -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 @@ -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 @@ -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 @@ -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