Skip to content

Commit

Permalink
Update compiler.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
macarooni-man authored Jan 5, 2024
1 parent fde687c commit d3f54c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
run: |
$python_url = "https://www.python.org/ftp/python/3.9.13/python-3.9.13-amd64.exe"
$dest_py = "$env:TEMP\python_installer-3.9.13.exe"
echo Downloading Python 3.9
echo "Downloading Python 3.9"
Invoke-WebRequest -Uri $python_url -OutFile $dest_py
echo Installing Python 3.9
echo "Installing Python 3.9"
Start-Process -FilePath $dest_py -ArgumentList "/S" -Wait
cmd /c "`"$python`" -m pip install --upgrade pip setuptools wheel"
cmd /c "$python -m pip install --upgrade pip setuptools wheel"
- name: Compile auto-mcs
shell: pwsh
run: |
Expand Down

0 comments on commit d3f54c9

Please sign in to comment.