Skip to content

Commit e5468d8

Browse files
juhyun-kim-uclaHua-Zhou
authored andcommitted
edit build_script
1 parent 8904057 commit e5468d8

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

appveyor.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff 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-
2116
notifications:
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

3025
build_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

3629
test_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%"

0 commit comments

Comments
 (0)