From 2a1bcddf8eb66e09c04915dd2b5f8b9c938f81f9 Mon Sep 17 00:00:00 2001 From: chrisjbillington Date: Wed, 27 Nov 2024 14:39:13 +1100 Subject: [PATCH] Try just building for one version of osx --- .github/workflows/release.yml | 40 +++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89ba6d8..f3b7b3a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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')