Skip to content

Commit

Permalink
Fix AppVeyor CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Oct 8, 2022
1 parent 899c345 commit a05be38
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ install:
- findstr /V tput pytest.ini > pytest.ini.tmp
- del pytest.ini
- ren pytest.ini.tmp pytest.ini
# Add Make and Python to the PATH
# Add Make to the PATH
- copy C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe
- set PATH=%PATH%;C:\MinGW\bin
# Add Python to the PATH
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%;%PATH%
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH%
# Add Rust to the PATH
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain %channel% --default-host %target%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
# Install system dependencies
- curl -sSL https://install.python-poetry.org | python -
- set PATH=%USERPROFILE%\AppData\Roaming\Python\Scripts;%PATH%
Expand Down

0 comments on commit a05be38

Please sign in to comment.