Skip to content

Commit

Permalink
Add Python 3.12 to matrix for angle and update Github Actions for rel…
Browse files Browse the repository at this point in the history
…ated jobs
  • Loading branch information
misl6 committed Dec 6, 2023
1 parent dd5b92d commit 9e15642
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/windows_angle_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
DEPOT_TOOLS_WIN_TOOLCHAIN: 0
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Get dependecies
run: |
. .\ci\windows_ci.ps1
Expand All @@ -33,7 +33,7 @@ jobs:
run: |
. .\ci\windows_ci.ps1
Build-angle
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: angle_dlls
path: angle_dlls
Expand All @@ -45,30 +45,30 @@ 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: Prepare Environment
run: |
. .\ci\windows_ci.ps1
Prepre-env
- uses: actions/download-artifact@v1
- uses: actions/download-artifact@v3
with:
name: angle_dlls
- name: Build package
run: |
. .\ci\windows_ci.ps1
Create-Packages
- name: Upload wheels as artifact
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v3
with:
name: angle_wheels
path: dist
Expand Down

0 comments on commit 9e15642

Please sign in to comment.