Skip to content

Commit

Permalink
fix CWD by installing deps in a subshell
Browse files Browse the repository at this point in the history
  • Loading branch information
paddor committed Jun 21, 2016
1 parent 7c8c1cd commit a5e1ccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -3,9 +3,9 @@ before_install:
- export LD_LIBRARY_PATH=$HOME/lib # custom libs (for execution)
- export PKG_CONFIG_PATH=$HOME/lib/pkgconfig # custom libs (for linking)
- export BUNDLE_PATH=$HOME/.bundle # bundle caching
- mkdir -p vendor && cd vendor && git clone --depth 1 https://github.com/paddor/czmq-ffi-gen && cd czmq-ffi-gen && ci-scripts/install-libzmq && ci-scripts/install-libczmq
- ( mkdir -p vendor && cd vendor && git clone --depth 1 https://github.com/paddor/czmq-ffi-gen && cd czmq-ffi-gen && ci-scripts/install-libzmq && ci-scripts/install-libczmq; )
sudo: false
script: rake ci
script: bundle exec rake ci
language: ruby
install: bundle install --without=development
rvm:
Expand Down

0 comments on commit a5e1ccd

Please sign in to comment.