Skip to content

Commit 1138cab

Browse files
committed
Merge pull request #14 from tkelman/travis
add travis configuration file
2 parents 7adbf57 + fa47df1 commit 1138cab

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-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")'

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## LightXML.jl
22

3+
[![Build Status](https://travis-ci.org/JuliaLang/LightXML.jl.svg?branch=master)](https://travis-ci.org/JuliaLang/LightXML.jl)
4+
35
This package is a light-weight Julia wrapper of [libxml2](http://www.xmlsoft.org), which provides a minimal interface that covers functionalities that are commonly needed:
46

57
* Parse a XML file or string into a tree

0 commit comments

Comments
 (0)