forked from m-j-w/CpuId.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (32 loc) · 796 Bytes
/
.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
language: julia
os:
- linux
- osx
- windows
julia:
- "1.0"
- "1.1"
- "1.2"
- "1.3"
- "1.4"
- "1.5"
- "1.6"
- nightly
notifications:
email: false
matrix:
allow_failures:
- julia: nightly
- julia: 1.0
- julia: 1.1
before_install:
script:
- julia --project --check-bounds=yes -e 'import Pkg; Pkg.build(); Pkg.test("CpuId"; coverage=true)'
after_success:
# Add required packages for Coverage and Documentation
- julia --project -e 'import Pkg; Pkg.add("Coverage");'
#- julia --project -e 'import Pkg; Pkg.add("Documenter"); Pkg.add("DocumenterTools");'
# Submit test coverage report
- julia --project -e 'using Coverage; Coveralls.submit(Coveralls.process_folder())'
# Build and deploy documentation
#- julia --project ./docs/make.jl