Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
artifacts/appveyor.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
37 lines (33 sloc)
1.2 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
environment: | |
matrix: | |
- DESCRIPTION: "Windows with 32-bit Python 3.11" | |
MACHINE_TYPE: "x86" | |
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022 | |
PYTHON: "C:\\Python311" | |
PYTHON_VERSION: "3.11" | |
L2TBINARIES_TRACK: "dev" | |
- DESCRIPTION: "Windows with 64-bit Python 3.11" | |
MACHINE_TYPE: "amd64" | |
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022 | |
PYTHON: "C:\\Python311-x64" | |
PYTHON_VERSION: "3.11" | |
L2TBINARIES_TRACK: "dev" | |
- DESCRIPTION: "Mac OS with Python 3.11" | |
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
install: | |
- cmd: "%PYTHON%\\python.exe -m pip install -U pip setuptools twine wheel" | |
- cmd: "%PYTHON%\\python.exe -m pip install pywin32 WMI" | |
- cmd: "%PYTHON%\\python.exe %PYTHON%\\Scripts\\pywin32_postinstall.py -install" | |
- ps: If ($isWindows) { .\config\appveyor\install.ps1 } | |
- sh: config/appveyor/install.sh | |
build_script: | |
- cmd: "%PYTHON%\\python.exe setup.py bdist_wheel" | |
test_script: | |
- cmd: "%PYTHON%\\python.exe run_tests.py" | |
- cmd: IF EXIST "tests\\end-to-end.py" ( | |
set PYTHONPATH=. && | |
"%PYTHON%\\python.exe" "tests\\end-to-end.py" --debug -c "config\\end-to-end.ini" ) | |
- sh: config/appveyor/runtests.sh | |
artifacts: | |
- path: dist\*.whl |