Skip to content

Commit

Permalink
Try just building for one version of osx
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjbillington committed Nov 27, 2024
1 parent e5fd348 commit 2a1bcdd
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,30 +37,30 @@ jobs:
strategy:
matrix:
include:
- { os: ubuntu-latest, python: '3.11', arch: x64, conda: true}
- { os: ubuntu-latest, python: '3.10', arch: x64, conda: true }
- { os: ubuntu-latest, python: '3.9', arch: x64, conda: true }
- { os: ubuntu-latest, python: '3.8', arch: x64, conda: true }
# - { os: ubuntu-latest, python: '3.11', arch: x64, conda: true}
# - { os: ubuntu-latest, python: '3.10', arch: x64, conda: true }
# - { os: ubuntu-latest, python: '3.9', arch: x64, conda: true }
# - { os: ubuntu-latest, python: '3.8', arch: x64, conda: true }

- { os: macos-13, python: '3.11', arch: x64, conda: true }
- { os: macos-13, python: '3.10', arch: x64, conda: true }
- { os: macos-13, python: '3.9', arch: x64, conda: true }
- { os: macos-13, python: '3.8', arch: x64, conda: true }
# - { os: macos-13, python: '3.10', arch: x64, conda: true }
# - { os: macos-13, python: '3.9', arch: x64, conda: true }
# - { os: macos-13, python: '3.8', arch: x64, conda: true }

- { os: macos-latest, python: '3.11', arch: arm64, conda: true}
- { os: macos-latest, python: '3.10', arch: arm64, conda: true}
- { os: macos-latest, python: '3.9', arch: arm64, conda: true}
- { os: macos-latest, python: '3.8', arch: arm64, conda: false}
# - { os: macos-latest, python: '3.11', arch: arm64, conda: true}
# - { os: macos-latest, python: '3.10', arch: arm64, conda: true}
# - { os: macos-latest, python: '3.9', arch: arm64, conda: true}
# - { os: macos-latest, python: '3.8', arch: arm64, conda: false}

- { os: windows-latest, python: '3.11', arch: x64, conda: true }
- { os: windows-latest, python: '3.10', arch: x64, conda: true }
- { os: windows-latest, python: '3.9', arch: x64, conda: true }
- { os: windows-latest, python: '3.8', arch: x64, conda: true }
# - { os: windows-latest, python: '3.11', arch: x64, conda: true }
# - { os: windows-latest, python: '3.10', arch: x64, conda: true }
# - { os: windows-latest, python: '3.9', arch: x64, conda: true }
# - { os: windows-latest, python: '3.8', arch: x64, conda: true }

- { os: windows-latest, python: '3.11', arch: x86, conda: false } # conda not yet available
- { os: windows-latest, python: '3.10', arch: x86, conda: true }
- { os: windows-latest, python: '3.9', arch: x86, conda: true }
- { os: windows-latest, python: '3.8', arch: x86, conda: true }
# - { os: windows-latest, python: '3.11', arch: x86, conda: false } # conda not yet available
# - { os: windows-latest, python: '3.10', arch: x86, conda: true }
# - { os: windows-latest, python: '3.9', arch: x86, conda: true }
# - { os: windows-latest, python: '3.8', arch: x86, conda: true }

if: github.repository == 'chrisjbillington/desktop-app'
steps:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
if: runner.os == 'macOS'
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 12.4
xcode-version: latest-stable

- name: Conda package (Unix)
if: (matrix.conda && runner.os != 'Windows')
Expand Down

0 comments on commit 2a1bcdd

Please sign in to comment.