forked from Azure/azure-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (40 loc) · 946 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
dist: trusty
sudo: off
language: python
addons:
apt:
packages:
- libssl-dev
- libffi-dev
- python-dev
install: echo 'skip'
cache: pip
jobs:
include:
- stage: build
script: ./scripts/ci/build.sh
python: 3.6
- stage: verify
env: PURPOSE='Automation'
script: ./scripts/ci/test_automation.sh
python: 3.6
- stage: verify
env: PURPOSE='Automation'
script: ./scripts/ci/test_automation.sh
python: 2.7
- stage: verify
script: ./scripts/ci/test_static.sh
env: PURPOSE='Static Check'
python: 3.6
- stage: verify
script: ./scripts/ci/test_integration.sh
env: PURPOSE='Integration'
python: 3.6
- stage: verify
script: ./scripts/ci/test_integration.sh
env: PURPOSE='Integration'
python: 2.7
- stage: publish
script: ./scripts/ci/publish.sh
python: 3.6
if: branch = dev and type = push