Skip to content

Commit 6b6aa03

Browse files
committed
Convert to standard Travis
1 parent c393318 commit 6b6aa03

File tree

1 file changed

+10
-27
lines changed

1 file changed

+10
-27
lines changed

.travis.yml

Lines changed: 10 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,11 @@
1-
language: cpp
2-
compiler:
3-
- clang
1+
language: julia
2+
os:
3+
- linux
4+
- osx
5+
julia:
6+
- 0.3
7+
- 0.4
8+
- nightly
49
notifications:
5-
email: false
6-
env:
7-
matrix:
8-
- JULIAVERSION="juliareleases"
9-
- JULIAVERSION="julianightlies"
10-
before_install:
11-
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
12-
- sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y
13-
- sudo apt-get update -qq -y
14-
- sudo apt-get install libpcre3-dev julia -y
15-
script:
16-
- if git --no-pager grep --color -n --full-name ' $' -- .; then
17-
echo "Error trailing whitespace found in source file(s)";
18-
echo "";
19-
echo "This can often be fixed with:";
20-
echo " git rebase --whitespace=fix HEAD~1";
21-
echo "or";
22-
echo " git rebase --whitespace=fix master";
23-
echo "and then a forced push of the correct branch";
24-
exit 1;
25-
fi
26-
- julia -e 'Pkg.init(); run(`ln -s $(pwd()) $(Pkg.dir("KernelDensity"))`); Pkg.pin("KernelDensity"); Pkg.resolve()'
27-
- julia -e 'using KernelDensity; @assert isdefined(:KernelDensity); @assert typeof(KernelDensity) === Module'
28-
- julia test/runtests.jl
10+
email: false
11+
sudo: false

0 commit comments

Comments
 (0)