From e124ee9354545c7264c0cbd8cec04818189404e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Rast?= Date: Tue, 20 Aug 2019 23:48:18 +0200 Subject: [PATCH] Initial Appveyor Config --- .appveyor.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 000000000..d3ab16c44 --- /dev/null +++ b/.appveyor.yml @@ -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