Skip to content

Commit f488b1e

Browse files
author
Roger-luo
committed
update ignore and travis
1 parent 6ef6d06 commit f488b1e

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
11
*.jl.cov
2+
*.jl.*.cov
23
*.jl.mem
4+
5+
.DS_Store
6+
7+
docs/build/
8+
docs/site/
9+
10+
docs/Manifest.toml
11+
12+
*.ipynb_checkpoints
13+
**/*.ipynb_checkpoints
14+
**/**/*.ipynb_checkpoints
15+
16+
_*.dat
17+
*.swp
18+
__pycache__/
19+
Manifest.toml

.travis.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,28 @@ os:
44
- osx
55
julia:
66
- 0.6
7+
- 1.0
78
- nightly
89
matrix:
910
allow_failures:
1011
- julia: nightly
1112
notifications:
1213
email: false
13-
# uncomment the following lines to override the default test script
14-
#script:
15-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
16-
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("MacroTools"); Pkg.test("MacroTools"; coverage=true)'
14+
15+
env:
16+
global:
17+
- DOCUMENTER_DEBUG=true
18+
19+
jobs:
20+
include:
21+
- stage: "Documentation"
22+
julia: 1.0
23+
os: linux
24+
script:
25+
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.add(PackageSpec(path=pwd()))'
26+
- julia --project=docs/ docs/make.jl
27+
after_success: skip
28+
29+
# uncomment this to enable test coverage
30+
# after_success:
31+
# - julia -e 'import Pkg; cd(Pkg.dir("Luxor")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'

0 commit comments

Comments
 (0)