From bf456baa35bd2213f7ae8b8adc27c341dc2c0756 Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 13 Oct 2023 13:35:40 +0200 Subject: [PATCH] workflow: Skip Python 3.12 tests on Windows for now Until we've added Python 3.12 to thirdparty packages --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c14a39546..64978eaf1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,14 +33,17 @@ jobs: (cd thirdparty/darwin-libs-a && rm -rf rocket) - name: Set up Python 3.12 + if: matrix.os != 'windows-2019' uses: actions/setup-python@v4 with: python-version: '3.12' - name: Build Python 3.12 + if: matrix.os != 'windows-2019' shell: bash run: | python makepanda/makepanda.py --git-commit=${{github.sha}} --outputdir=built --everything --no-eigen --python-incdir="$pythonLocation/include" --python-libdir="$pythonLocation/lib" --verbose --threads=4 --windows-sdk=10 - name: Test Python 3.12 + if: matrix.os != 'windows-2019' shell: bash run: | python -m pip install pytest