forked from cs01/gdbgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (40 loc) · 933 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# https://docs.travis-ci.com/user/multi-os/
os:
- linux
# no osx for now (travis build server doesn't work build it)
# - osx
matrix:
allow_failures:
- os: osx
language: python
sudo: required
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
- "pypy"
matrix:
allow_failures:
- python: '3.6-dev'
- python: '3.7-dev'
- python: 'nightly'
before_install:
# install collective.checkdocs to allow for python setup.py test command to work
- pip install -r dev_requirements.txt
- yarn install
# commands for linux
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install gdb ; fi
# commands for osx
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install homebrew/dupes/gdb; fi
script:
- make test
cache:
pip: true
yarn: true
directories:
- node_modules