Skip to content

Commit 9cfc224

Browse files
committed
Merge pull request #15 from isuruf/travis
Fix travis tests
2 parents 9bcfe4c + ba0014b commit 9cfc224

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,10 @@ notebooks/.ipynb_checkpoints/
99
notebooks/Gemfile.lock
1010
callgrind.out.*
1111
*~
12+
13+
*.so
14+
*.cmake
15+
CMakeFiles/
16+
CMakeCache.txt
17+
Makefile
18+
install_manifest.txt

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ matrix:
2525
include:
2626
- os: osx
2727
rvm: 1.9.3
28+
allow_failures:
29+
- os: osx
30+
rvm: 1.9.3
2831

2932
install:
3033
- export RUBY_SOURCE_DIR=`pwd`
@@ -48,10 +51,11 @@ script:
4851
# Build ruby gem
4952
- gem build symengine.gemspec
5053
# Install ruby gem
51-
- gem install symengine-0.1.0.gem --user --verbose -- -DSymEngine_DIR=$our_install_dir
54+
- gem install symengine-0.1.0.gem --install-dir $HOME --verbose -- -DSymEngine_DIR=$our_install_dir
55+
5256
# Test ruby gem
5357
- gem install gem-path --no-ri --no-rdoc
54-
- cd `gem path symengine`
58+
- cd $HOME/gems/symengine-0.1.0/
5559
- bundle exec rspec
5660

5761
notifications:

0 commit comments

Comments
 (0)