Skip to content

Commit

Permalink
Update Github Actions for gstreamer wheels, and add Python 3.12 to ma…
Browse files Browse the repository at this point in the history
…trix for Gstreamer
  • Loading branch information
misl6 committed Dec 6, 2023
1 parent bfc1a07 commit 24d6684
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/windows_gstreamer_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
env:
PACKAGE_ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Cache deps
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: kivy_build_cache
key: cache-packages-gstreamer-${{ matrix.arch }}-${{ hashFiles('win/gstreamer.py') }}
Expand All @@ -52,19 +52,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
arch: ['x64', 'x86']
env:
PACKAGE_ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.arch }}
- name: Cache deps
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: kivy_build_cache
key: cache-packages-gstreamer-${{ matrix.arch }}-${{ hashFiles('win/gstreamer.py') }}
Expand All @@ -79,7 +79,7 @@ jobs:
. .\ci\windows_ci.ps1
Create-Packages
- name: Upload wheels as artifact
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v3
with:
name: gstreamer_wheels
path: dist
Expand Down

0 comments on commit 24d6684

Please sign in to comment.