Skip to content

Commit

Permalink
Merge 1e7e889 into a68a1e8
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Jul 30, 2016
2 parents a68a1e8 + 1e7e889 commit 7a2a2ab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Expand Up @@ -4,12 +4,13 @@ os:
- linux
julia:
- 0.4
- 0.5
- nightly
notifications:
email: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.clone(pwd()); Pkg.build("Sundials"); Pkg.test("Sundials"; coverage=true)';
#script: # use the default script which does the following
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Sundials"); Pkg.test("Sundials"; coverage=true)';
after_success:
- julia -e 'cd(Pkg.dir("Sundials")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

3 changes: 2 additions & 1 deletion REQUIRE
@@ -1,2 +1,3 @@
julia 0.4-
julia 0.4
BinDeps 0.3
Compat
4 changes: 2 additions & 2 deletions src/wrap_sundials.jl
Expand Up @@ -2,12 +2,12 @@
# that uses the Clang.jl package to wrap Sundials using the headers.

# Find all headers
incpath = Pkg.dir("Sundials", "deps", "usr", "include")
incpath = joinpath(dirname(@__FILE__), "..", "deps", "usr", "include")
if !isdir(incpath)
error("Run Pkg.build(\"Sundials\") before trying to wrap C headers.")
end

wdir = Pkg.dir("Sundials", "new")
wdir = joinpath(dirname(@__FILE__), "..", "new")
mkpath(wdir)
cd(wdir)

Expand Down

0 comments on commit 7a2a2ab

Please sign in to comment.