-
Notifications
You must be signed in to change notification settings - Fork 13
/
.travis.yml
65 lines (64 loc) · 1.98 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
matrix:
include:
# - stage: Test OSX
# language: julia
# os: osx
# julia: 1.1
# notifications:
# email: false
# git:
# depth: 99999999
# before_script:
# - export PATH=$HOME/.local/bin:$PATH
# after_success:
# - julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- stage: Test Linux
language: julia
os: linux
julia: 1.1
notifications:
email: false
git:
depth: 99999999
before_script:
- export PATH=$HOME/.local/bin:$PATH
after_success:
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- stage: deploy docs
language: julia
os: linux
julia: 1.1
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
# - stage: semantic release
# if: branch = master AND type != pull_request
# language: python
# os: linux
# python: 3.6
# before_script: skip
# install:
# - pip install typing
# - pip install python-semantic-release
# script:
# - git config --global user.name "semantic-release (via TravisCI)"
# - git config --global user.email "semantic-release@travis"
# - semantic-release publish
# after_script: skip
# after_success: skip
#
# - stage: Pre-release
# if: branch = pre-release
# language: python
# os: linux
# python: 3.6
# before_script: skip
# install:
# - pip install typing
# - pip install python-semantic-release
# script:
# - git config --global user.name "semantic-release (via TravisCI)"
# - git config --global user.email "semantic-release@travis"
# - semantic-release version
# after_script: skip
# after_success: skip