Added SDL3 wheels for kivy_deps.sdl3 and kivy_deps.sdl3_dev #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SDL3 wheels | |
on: | |
push: | |
branches: | |
- master | |
- windows_ci | |
paths: | |
- 'win/common.py' | |
- 'win/sdl3.py' | |
- 'win/build_sdl3.ps1' | |
- 'ci/windows_ci.ps1' | |
- '.github/workflows/windows_sdl3_wheels.yml' | |
env: | |
SERVER_IP: '159.203.106.198' | |
KIVY_BUILD_DIR: kivy-dependencies\dist | |
KIVY_BUILD_CACHE: kivy_build_cache | |
PACKAGE_TARGET: sdl3 | |
PYTHONPATH: . | |
jobs: | |
prepare_build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
arch: ['x64'] | |
env: | |
PACKAGE_ARCH: ${{ matrix.arch }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build SDL3 for arch ${{ matrix.arch }} | |
run: | | |
./win/build_sdl3.ps1 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: sdl3_build_${{ matrix.arch }} | |
path: kivy-dependencies | |
windows_wheels: | |
runs-on: windows-latest | |
needs: prepare_build | |
strategy: | |
fail-fast: false | |
matrix: | |
python: [ '3.8', '3.9', '3.10', '3.11' , '3.12' ] | |
arch: ['x64'] | |
env: | |
PACKAGE_ARCH: ${{ matrix.arch }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: ${{ matrix.arch }} | |
- uses: actions/download-artifact@v4 | |
with: | |
name: sdl3_build_${{ matrix.arch }} | |
path: kivy-dependencies | |
- name: Prepare Environment | |
run: | | |
. .\ci\windows_ci.ps1 | |
Prepre-env | |
- name: Build package | |
run: | | |
. .\ci\windows_ci.ps1 | |
Create-Packages | |
- name: Upload wheels as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sdl3_wheel_${{ matrix.arch }}_${{ matrix.python }} | |
path: dist | |