-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml.old
40 lines (32 loc) · 1003 Bytes
/
.travis.yml.old
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
language: julia
os:
- linux
- osx
branches:
only:
- master
julia:
- 1.4
notifications:
email: false
install:
- if [[ "$TRAVIS_JULIA_VERSION" != "0.6.4" ]]; then
julia -e 'using Pkg; Pkg.add("Delaunay")';
julia -e 'using Pkg; Pkg.add("SharedArrays")';
fi
after_success:
- echo "$TRAVIS_JULIA_VERSION"
- if [[ "$TRAVIS_JULIA_VERSION" == "0.6.4" ]]; then
julia -e 'cd(Pkg.dir("AlphaStructures")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())';
cd $TRAVIS_BUILD_DIR && julia -e 'Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))';
else
julia -e 'using Pkg; cd(Pkg.dir("AlphaStructures")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())';
cd $TRAVIS_BUILD_DIR && julia -e 'using Pkg; Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))';
fi
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
keep_history: true
on:
branch: master