2
0

.appveyor.yml 569 B

123456789101112131415161718192021222324252627
  1. version: '{build}'
  2. environment:
  3. matrix:
  4. - PYTHON: C:\Python38-x64
  5. # Disable automatic builds
  6. build: off
  7. # Build artifacts: all wheel and exe files in the dist folder
  8. artifacts:
  9. - path: 'dist\*.whl'
  10. - path: 'dist\*.exe'
  11. install:
  12. - ps: scripts\win-download-openssl.ps1
  13. - ps: |
  14. & $env:PYTHON\python.exe -m venv borg-env
  15. borg-env\Scripts\activate.ps1
  16. python -m pip install -U pip
  17. pip install -r requirements.d/development.txt
  18. pip install wheel pyinstaller
  19. build_script:
  20. - ps: |
  21. borg-env\Scripts\activate.ps1
  22. scripts\win-build.ps1