mirror of
https://github.com/jordansissel/fpm
synced 2025-08-29 04:01:33 +02:00
This should fix this error on travis: ``` Installing collected packages: virtualenv The script virtualenv is installed in '/Users/travis/Library/Python/2.7/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. ```
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
os:
|
|
- linux
|
|
- osx
|
|
language: ruby
|
|
sudo: false
|
|
rvm:
|
|
# We use language features of Ruby that are not supported in Ruby 1.9.x or
|
|
# older.
|
|
#- 1.8.7
|
|
#- 1.9.2
|
|
- 1.9.3
|
|
- 2.0.0
|
|
- 2.1.1
|
|
- 2.2.1
|
|
- 2.3.1
|
|
- 2.2.5
|
|
- 2.3.3
|
|
- 2.4.0
|
|
- 2.5.1
|
|
- 2.6.0
|
|
matrix:
|
|
exclude:
|
|
- os: osx
|
|
rvm: 1.9.3
|
|
- os: osx
|
|
rvm: 2.0.0
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew bundle; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which dpkg-deb || 'dpkg-deb not found'; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which lintian || echo 'lintian not found'; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which python || brew install python; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which easy_install || echo 'easy_install not found'; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which virtualenv || pip install --user virtualenv ; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then which virtualenv-tools || pip install --user virtualenv virtualenv-tools ; fi
|
|
- |
|
|
export PATH="/Users/travis/Library/Python/2.7/bin:${PATH}"
|
|
virtualenv ${HOME}/.venv
|
|
script: source ${HOME}/.venv/bin/activate && PATH=${PATH}:${HOME}/.local/bin bundle exec rspec
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- bsdtar
|
|
- rpm
|
|
- lintian
|
|
- python3-setuptools
|
|
- python3-pip
|
|
- squashfs-tools
|
|
- perl
|