.appveyor.yml 1.1 KB

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