mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-11 14:48:22 +00:00
Initial Appveyor Config
This commit is contained in:
parent
f0b74146da
commit
e124ee9354
1 changed files with 27 additions and 0 deletions
27
.appveyor.yml
Normal file
27
.appveyor.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
version: '{build}'
|
||||||
|
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- PYTHON: C:\Python37-x64
|
||||||
|
|
||||||
|
# Disable automatic builds
|
||||||
|
build: off
|
||||||
|
|
||||||
|
# Build artifacts: all wheel and exe files in the dist folder
|
||||||
|
artifacts:
|
||||||
|
- path: 'dist\*.whl'
|
||||||
|
- path: 'dist\*.exe'
|
||||||
|
|
||||||
|
install:
|
||||||
|
- ps: scripts\win-download-openssl.ps1
|
||||||
|
- ps: |
|
||||||
|
& $env:PYTHON\python.exe -m venv borg-env
|
||||||
|
borg-env\Scripts\activate.ps1
|
||||||
|
python -m pip install -U pip
|
||||||
|
pip install -r requirements.d/development.txt
|
||||||
|
pip install wheel pyinstaller
|
||||||
|
|
||||||
|
build_script:
|
||||||
|
- ps: |
|
||||||
|
borg-env\Scripts\activate.ps1
|
||||||
|
scripts\win-build.ps1
|
Loading…
Add table
Reference in a new issue