appveyor.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. environment:
  2. matrix:
  3. - julia_version: 0.7
  4. - julia_version: 1
  5. - julia_version: nightly
  6. platform:
  7. - x86 # 32-bit
  8. - x64 # 64-bit
  9. # # Uncomment the following lines to allow failures on nightly julia
  10. # # (tests will run but not make your overall status red)
  11. # matrix:
  12. # allow_failures:
  13. # - julia_version: latest
  14. branches:
  15. only:
  16. - master
  17. - /release-.*/
  18. notifications:
  19. - provider: Email
  20. on_build_success: false
  21. on_build_failure: false
  22. on_build_status_changed: false
  23. install:
  24. - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
  25. build_script:
  26. - echo "%JL_BUILD_SCRIPT%"
  27. - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
  28. test_script:
  29. - echo "%JL_TEST_SCRIPT%"
  30. - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
  31. # # Uncomment to support code coverage upload. Should only be enabled for packages
  32. # # which would have coverage gaps without running on Windows
  33. # on_success:
  34. # - echo "%JL_CODECOV_SCRIPT%"
  35. # - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"