Skip to content

Commit

Permalink
attempt #3
Browse files Browse the repository at this point in the history
  • Loading branch information
dfdx committed Nov 26, 2015
1 parent 6e745d8 commit f1fb7d9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ before_install:
- if [ `uname` = "Linux" ]; then
sudo apt-get update -qq -y;
sudo apt-get install -qq fglrx opencl-headers;
wget https://github.com/clMathLibraries/clBLAS/releases/download/v2.6/clBLAS-2.6.0-Linux-x64.tar.gz
tar -xf clBLAS-2.6.0-Linux-x64.tar.gz
export $LD_LIBRARY_PATH=`pwd`/clBLAS-2.6.0-Linux-x64/lib64:${LD_LIBRARY_PATH}
wget https://github.com/clMathLibraries/clBLAS/releases/download/v2.6/clBLAS-2.6.0-Linux-x64.tar.gz;
tar -xf clBLAS-2.6.0-Linux-x64.tar.gz;
export $LD_LIBRARY_PATH=`pwd`/clBLAS-2.6.0-Linux-x64/lib64:${LD_LIBRARY_PATH};
fi;
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi

script:
- cd ${TRAVIS_BUILD_DIR}
- julia -e 'Pkg.init(); run(`ln -s $(pwd()) $(Pkg.dir("CLBLAS"))`); Pkg.pin("CLBLAS"); Pkg.resolve()'
- julia -e 'using CLBLAS; @assert isdefined(:CLBLAS); @assert typeof(CLBLAS) === Module'
- julia -e 'import CLBLAS; CLBLAS.setup()'
- julia test/runtests.jl
- julia test/runtests.jl

0 comments on commit f1fb7d9

Please sign in to comment.