-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (35 loc) · 747 Bytes
/
Copy path.travis.yml
File metadata and controls
40 lines (35 loc) · 747 Bytes
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
## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
- windows
arch:
- x64
- x86
- arm64
julia:
- 1
- nightly
matrix:
allow_failures:
- arch: arm64
exclude:
- os: osx
arch: x86
- os: osx
arch: arm64
- os: windows
arch: arm64
- julia: nightly
arch: arm64
notifications:
email: false
after_success:
- julia -e 'using Pkg;
import LinRegSubsetSelection;
cd(joinpath(dirname(pathof(LinRegSubsetSelection)), ".."));
Pkg.add("Coverage");
include("process_src_coverage.jl");
Coveralls.submit(process_folder2());
Codecov.submit(process_folder2())'