From: Daniele Varrazzo Date: Wed, 26 Oct 2022 22:49:04 +0000 (+0200) Subject: ci: configure in order to build only Python 3.11 packages for macOS x86_64 X-Git-Tag: pool-3.1.4~16^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8aafdb9b1c4591996fa1c829e7bf062efb3f5c2d;p=thirdparty%2Fpsycopg.git ci: configure in order to build only Python 3.11 packages for macOS x86_64 The required image was not available at the time of building other packages. See #424. --- diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index cd288e751..b250313cb 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -9,6 +9,7 @@ jobs: sdist: # {{{ runs-on: ubuntu-latest + if: false strategy: fail-fast: false @@ -79,6 +80,7 @@ jobs: linux: # {{{ runs-on: ubuntu-latest + if: false env: LIBPQ_VERSION: "15.0" @@ -163,15 +165,15 @@ jobs: macos: # {{{ runs-on: macos-latest + if: true strategy: fail-fast: false matrix: # These archs require an Apple M1 runner: [arm64, universal2] arch: [x86_64] - # TODO: cp311 not available yet on Github runners. See #424 - # pyver: [cp37, cp38, cp39, cp310, cp311] - pyver: [cp37, cp38, cp39, cp310] + # pyver: [cp37, cp38, cp39, cp310] + pyver: [cp311] steps: - uses: actions/checkout@v3 @@ -205,6 +207,7 @@ jobs: windows: # {{{ runs-on: windows-latest + if: false strategy: fail-fast: false