-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.travis.yml
42 lines (41 loc) · 1.01 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
arch:
- amd64
- x86
- arm64
julia:
- 1.0
- 1.3
- nightly
env:
matrix:
- ""
- "CMAKE_JL_BUILD_FROM_SOURCE=1"
- "BINARYPROVIDER_COPYDEREF=true"
- "CMAKE_JL_BUILD_FROM_SOURCE=1"
matrix:
allow_failures:
- julia: nightly
fast_finish: true
exclude:
- os: osx
arch: x86
- os: osx
arch: arm64
notifications:
email: false
branches:
only: master
before_script:
# Every 30 seconds, look for the build log file. If it exists, then
# start watching its contents and printing them to stdout as they
# change. This has two effects:
# 1. it avoids Travis timing out because the build outputs nothing
# 2. it makes it more obvious what part of the build, if any, gets stuck
- while sleep 30; do tail ~/build/JuliaPackaging/CMake.jl/deps/build.log -f ; done &
after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'