appveyor.yml 497 B

123456789101112131415161718192021222324
  1. version: '{branch}-{build}'
  2. install:
  3. - "SET PATH=C:\\Python27-x64;C:\\Python27-x64\\Scripts;%PATH%"
  4. - "python --version"
  5. - "pip install tox==2.1.1 virtualenv==13.1.2"
  6. # Build the binary after tests
  7. build: false
  8. test_script:
  9. - "tox -e py27,py34 -- tests/unit"
  10. - ps: ".\\script\\build\\windows.ps1"
  11. artifacts:
  12. - path: .\dist\docker-compose-Windows-x86_64.exe
  13. name: "Compose Windows binary"
  14. deploy:
  15. - provider: Environment
  16. name: master-builds
  17. on:
  18. branch: master