Browse Source

workflow: Skip Windows builds for Python 3.13 for now

rdb 1 year ago
parent
commit
10da05e2a6
1 changed files with 3 additions and 0 deletions
  1. 3 0
      .github/workflows/ci.yml

+ 3 - 0
.github/workflows/ci.yml

@@ -33,14 +33,17 @@ jobs:
         (cd thirdparty/darwin-libs-a && rm -rf rocket)
         (cd thirdparty/darwin-libs-a && rm -rf rocket)
 
 
     - name: Set up Python 3.13
     - name: Set up Python 3.13
+      if: runner.os != 'Windows'
       uses: actions/setup-python@v5
       uses: actions/setup-python@v5
       with:
       with:
         python-version: '3.13'
         python-version: '3.13'
     - name: Build Python 3.13
     - name: Build Python 3.13
+      if: runner.os != 'Windows'
       shell: bash
       shell: bash
       run: |
       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
         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.13
     - name: Test Python 3.13
+      if: runner.os != 'Windows'
       shell: bash
       shell: bash
       run: |
       run: |
         python -m pip install pytest setuptools
         python -m pip install pytest setuptools