File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,11 +13,6 @@ branches:
1313 - master
1414 - /release-.*/
1515
16- matrix :
17- allow_failures :
18- - JULIAVERSION : " julianightlies/bin/winnt/x86/julia-latest-win32.exe"
19- - JULIAVERSION : " julianightlies/bin/winnt/x64/julia-latest-win64.exe"
20-
2116notifications :
2217 - provider : Email
2318 on_build_success : false
@@ -28,10 +23,15 @@ install:
2823 - ps : iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
2924
3025build_script :
31- # Need to convert from shallow to complete for Pkg.clone to work
32- - IF EXIST .git\shallow (git fetch --unshallow)
33- - C:\projects\julia\bin\julia -e "versioninfo();
34- Pkg.clone(pwd(), \"VarianceComponentModels\"); Pkg.build(\"VarianceComponentModels\")"
26+ - echo "%JL_BUILD_SCRIPT%"
27+ - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
3528
3629test_script :
37- - C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"VarianceComponentModels\")"
30+ - echo "%JL_TEST_SCRIPT%"
31+ - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
32+
33+ # # Uncomment to support code coverage upload. Should only be enabled for packages
34+ # # which would have coverage gaps without running on Windows
35+ # on_success:
36+ # - echo "%JL_CODECOV_SCRIPT%"
37+ # - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
You can’t perform that action at this time.
0 commit comments