vorta/.travis.yml

83 lines
1.5 KiB
YAML
Raw Normal View History

2018-11-20 07:18:46 +00:00
language: generic
sudo: required
dist: xenial
2018-11-20 07:18:46 +00:00
2018-11-20 05:30:32 +00:00
addons:
apt:
packages:
- xvfb
2018-11-20 06:56:06 +00:00
- herbstluftwm
2018-11-20 06:42:26 +00:00
- libssl-dev
- openssl
- libacl1-dev
- libacl1
- build-essential
- libxkbcommon-x11-0
2018-11-20 07:06:11 +00:00
homebrew:
2018-11-20 08:04:59 +00:00
update: false
2018-11-20 07:06:11 +00:00
packages:
- openssl
- readline
2018-11-20 08:34:09 +00:00
- xz
2018-11-20 08:04:59 +00:00
- pyenv
2018-11-20 07:06:11 +00:00
- pyenv-virtualenv
casks:
- xquartz
2018-11-20 09:19:59 +00:00
2018-11-20 05:26:43 +00:00
cache:
2018-11-20 07:18:46 +00:00
directories:
- $HOME/.cache/pip
2018-11-20 07:46:03 +00:00
- $HOME/.pyenv/versions
- $HOME/Library/Caches/Homebrew
2018-11-20 05:26:43 +00:00
env:
global:
- SETUP_XVFB=true
- PYTHON36=3.6.9
- PYTHON37=3.7.5
- PYTHON38=3.8.2
2018-11-20 05:26:43 +00:00
matrix:
include:
- os: linux
dist: xenial
2018-11-20 05:26:43 +00:00
env:
- RUN_PYINSTALLER=true
2018-11-20 06:56:06 +00:00
- os: osx
env:
- RUN_PYINSTALLER=true
2018-11-20 05:26:43 +00:00
install:
- |
if [ $TRAVIS_OS_NAME = "linux" ]; then
2018-11-20 06:29:11 +00:00
export DISPLAY=:99.0
2018-11-20 06:35:00 +00:00
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 -ac +extension GLX +render -noreset
2018-11-20 06:29:11 +00:00
sleep 3
cd $(pyenv root) && git pull origin master && cd $TRAVIS_BUILD_DIR
2018-11-20 05:26:43 +00:00
elif [ $TRAVIS_OS_NAME = "osx" ]; then
2018-11-20 08:27:24 +00:00
brew upgrade pyenv
2018-11-20 05:26:43 +00:00
fi
pyenv install -s $PYTHON37
pyenv install -s $PYTHON36
eval "$(pyenv init -)"
pyenv shell $PYTHON36 $PYTHON37
2018-11-20 05:26:43 +00:00
- pip install -U setuptools pip
2018-11-20 05:26:43 +00:00
- pip install .
2018-11-20 06:42:26 +00:00
- pip install borgbackup
2018-12-06 10:24:30 +00:00
- pip install -r requirements.d/dev.txt
2018-11-20 05:26:43 +00:00
before_script:
- if [ $TRAVIS_OS_NAME = "linux" ]; then (herbstluftwm)& fi
2018-11-20 06:35:00 +00:00
- sleep 3
2018-11-20 05:26:43 +00:00
script:
- tox
2018-11-20 05:26:43 +00:00
branches:
only:
- master
notifications:
email: false