23 lines
No EOL
588 B
YAML
23 lines
No EOL
588 B
YAML
image: Visual Studio 2019
|
|
platform: x64
|
|
version: 0.1.{build}
|
|
branches:
|
|
only:
|
|
- pyqt_gui
|
|
|
|
environment:
|
|
VCVARS: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat
|
|
VCVARSARG: x64
|
|
|
|
install:
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init -yv --default-toolchain nightly --default-host x86_64-pc-windows-msvc
|
|
- pip install tox
|
|
|
|
|
|
before_build:
|
|
- if defined VCVARS call "%VCVARS%" %VCVARSARG%
|
|
- C:\Miniconda3\Miniconda3\Library\bin\conda.bat activate
|
|
|
|
test_script:
|
|
- tox |