This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
68 lines (64 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
language: julia
dist: bionic
cache:
directories:
- $HOME/apt-get-packages
- $HOME/texlive
- $HOME/.texlive
- $HOME/texmf
notifications:
email: false
stages:
- name: "Docs & Coveralls"
- name: Tests
if: branch != master AND branch != develop AND NOT branch =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
jobs:
fast_finish: true
allow_failures:
julia: nightly
include:
- stage: "Docs & Coveralls"
julia: 1.5
os: linux
arch: amd64
name: "Documentation Build, Julia 1.5 (Linux, x64)"
script:
- bash .github/scripts/install-plots-dependencies.bash
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
- name: "Code Coverage, Julia 1.5 (Linux, x64)"
script:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage;
Pkg.test(coverage=true); Coveralls.submit(Coveralls.process_folder())'
- stage: Tests
name: "Julia 1.5 (Linux, x32)"
julia: 1.5
os: linux
arch: i386
- stage: "Tests"
name: "Julia 1.5 (macOS, x64)"
julia: 1.5
os: osx
- stage: "Tests"
name: "Julia 1.5 (Windows, x64)"
julia: 1.5
os: windows
- stage: "Tests"
name: "Julia Nightly (Linux, x64)"
julia: nightly
os: linux
arch: amd64
- stage: "Tests"
name: "Julia Nightly (Linux, x32)"
julia: nightly
os: linux
arch: i386
- stage: "Tests"
name: "Julia Nightly (macOS, x64)"
julia: nightly
os: osx
- stage: "Tests"
name: "Julia Nightly (Windows, x64)"
julia: nightly
os: windows