Skip to content

Commit 14a3632

Browse files
committed
add travis configuration file
1 parent 7adbf57 commit 14a3632

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: cpp
2+
os:
3+
- linux
4+
- osx
5+
compiler:
6+
- clang
7+
notifications:
8+
email: false
9+
env:
10+
matrix:
11+
- JULIAVERSION="juliareleases"
12+
- JULIAVERSION="julianightlies"
13+
before_install:
14+
- curl http://julialang.org/install-julia.sh | sh -s $JULIAVERSION
15+
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
16+
script:
17+
- julia --check-bounds=yes -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd()); Pkg.test("LightXML")'

0 commit comments

Comments
 (0)