forked from autocomplete-python/autocomplete-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
53 lines (43 loc) · 964 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
43
44
45
46
47
48
49
50
51
52
53
### Project specific config ###
language: python
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
jobs:
include:
- os: linux
python: 3.7
env: ATOM_CHANNEL=stable
- os: linux
python: 3.7
env: ATOM_CHANNEL=beta
- os: osx
language: generic
env: ATOM_CHANNEL=stable
- os: osx
language: generic
env: ATOM_CHANNEL=beta
before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then cd /usr/local/bin && mv python python.old && ln -s python3 python && cd -; fi
### Generic setup follows ###
script:
- pip3 install jedi
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh
notifications:
email:
on_success: never
on_failure: change
git:
depth: 10
sudo: false
dist: bionic
addons:
apt:
packages:
- build-essential
- fakeroot
- git
- libsecret-1-dev