Skip to content

Commit

Permalink
Setup Python before processing ANGLE build (#121)
Browse files Browse the repository at this point in the history
* Setup Python before processing ANGLE build

* Setup Python before processing ANGLE build
  • Loading branch information
misl6 authored Sep 28, 2024
1 parent 9110766 commit 3cef859
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/windows_angle_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
DEPOT_TOOLS_WIN_TOOLCHAIN: 0
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Get dependecies
run: |
. .\ci\windows_ci.ps1
Expand Down
1 change: 0 additions & 1 deletion ci/windows_ci.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ function Get-angle-deps() {

function Build-angle() {
$env:PATH="$(pwd)\depot_tools;$env:PATH"
$env:PATH="$(python -c "import os; print(';'.join([p for p in os.environ['PATH'].split(';') if 'Python' not in p and 'python' not in p and 'Chocolatey' not in p]))")"
cd angle_src

gclient
Expand Down

0 comments on commit 3cef859

Please sign in to comment.