appveyor.yml 946 B

1234567891011121314151617181920212223242526272829303132
  1. # Not a .NET project. We build it in the install script
  2. build: false
  3. platform:
  4. - x64
  5. - x86
  6. environment:
  7. BINTRAY_API_KEY:
  8. secure: ng7NUNQat2LczU5XjKKyDLITkZbZsJeAdPGDjuTdQDHDiaL03JJF6Usab+miNVsO
  9. MINICONDA: C:\Miniconda
  10. CMAKE_PROJECT: MinGW Makefiles
  11. PYTHON_VERSION: 3.7
  12. OSQP_VERSION: 0.6.0
  13. init:
  14. # Uncomment for remote desktop debug
  15. # - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
  16. - ECHO %PYTHON_VERSION% %MINICONDA%
  17. install:
  18. - "%APPVEYOR_BUILD_FOLDER%\\ci\\appveyor\\install.cmd"
  19. test_script:
  20. - "%APPVEYOR_BUILD_FOLDER%\\ci\\appveyor\\script.cmd"
  21. deploy_script:
  22. - "%APPVEYOR_BUILD_FOLDER%\\ci\\appveyor\\deploy.cmd"
  23. on_finish:
  24. # Uncomment for remote desktop debug
  25. # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))