PortAudio.jl/appveyor.yml

39 lines
1.4 KiB
YAML
Raw Normal View History

environment:
matrix:
2018-08-16 18:41:35 +02:00
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/1.0/julia-1.0-latest-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/1.0/julia-1.0-latest-win64.exe"
matrix:
allow_failures:
# currently failing on 1.0 until https://github.com/JuliaLang/METADATA.jl/pull/16370 is merged
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/1.0/julia-1.0-latest-win64.exe"
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false
2018-08-16 18:41:35 +02:00
# only build master and PRs
branches:
only:
- master
install:
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
# Download most recent Julia Windows binary
- ps: (new-object net.webclient).DownloadFile(
$env:JULIA_URL,
"C:\projects\julia-binary.exe")
# Run installer silently, output to C:\projects\julia
- C:\projects\julia-binary.exe /S /D=C:\projects\julia
build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
2018-08-16 18:41:35 +02:00
- C:\projects\julia\bin\julia --color=yes ci_setup.jl
test_script:
2018-08-16 18:41:35 +02:00
# - C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"SampledSignals\")"
- C:\projects\julia\bin\julia --color=yes --code-coverage --check-bounds=yes test/runtests.jl