forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
114 lines (112 loc) · 3.89 KB
/
.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
language: python
cache: pip
matrix:
include:
- os: linux
python: "2.7"
env: UNIT_TEST=true
- os: linux
python: "2.7"
env: DEBUGGER_TEST_RELEASE=true
- os: linux
python: "2.7"
env: SINGLE_WORKSPACE_TEST=true
- os: linux
python: "2.7"
env: MULTIROOT_WORKSPACE_TEST=true
- os: linux
python: "3.6-dev"
env: DEBUGGER_TEST_RELEASE=true
- os: linux
python: "3.6-dev"
env: SINGLE_WORKSPACE_TEST=true
- os: linux
python: "3.6-dev"
env: MULTIROOT_WORKSPACE_TEST=true
- os: linux
python: "3.6-dev"
env: PERFORMANCE_TEST=true
- os: linux
python: "3.7-dev"
env: DEBUGGER_TEST_RELEASE=true
- os: linux
python: "3.7-dev"
env: SINGLE_WORKSPACE_TEST=true
- os: linux
python: "3.7-dev"
env: MULTIROOT_WORKSPACE_TEST=true
- os: linux
python: "3.7-dev"
env: BUNDLE=true
allow_failures:
- os: linux
python: "3.7-dev"
env: FUNCTIONAL_TEST=true
before_install: |
if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
git clone https://github.com/creationix/nvm.git ./.nvm
source ./.nvm/nvm.sh
nvm install 8.9.1
nvm use 8.9.1
npm install npm@latest -g
npm install -g vsce
npm install -g azure-cli
export CI_PYTHON_PATH=`which python`
install:
- travis_wait 5 npm ci
- npm run clean
- npx gulp prePublishNonBundle
- npx gulp hygiene-modified
- python -m pip install --upgrade pip
- python -m pip install --upgrade -r ./build/test-requirements.txt
- npx gulp installPythonLibs
script:
- if [ $UNIT_TEST == "true" ]; then
npm run cover:enable;
npm run test:unittests:cover;
fi
- if [ $DEBUGGER_TEST_RELEASE == "true" ]; then
npm run cover:enable;
npm run testDebugger --silent;
fi
- npm run debugger-coverage
- if [ $FUNCTIONAL_TEST == "true" ]; then
python -m pip install --upgrade -r ./build/functional-test-requirements.txt;
npm run test:functional:cover;
fi
- if [ $SINGLE_WORKSPACE_TEST == "true" ]; then
npm run cover:enable;
npm run testSingleWorkspace --silent;
fi
- if [ $MULTIROOT_WORKSPACE_TEST == "true" ]; then
npm run cover:enable;
npm run testMultiWorkspace --silent;
fi
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" && "$PERFORMANCE_TEST" == "true" ]]; then
npm run testPerformance --silent;
fi
- if [ "$TRAVIS_PYTHON_VERSION" == "3.7" ]; then
python3 -m pip install --upgrade -r news/requirements.txt;
python3 news/announce.py --dry_run;
python3 -m pip install --upgrade -r tpn/requirements.txt;
python3 tpn --npm package-lock.json --config tpn/distribution.toml /dev/null;
fi
- if [[ $BUNDLE == "true" && $AZURE_STORAGE_ACCOUNT && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then
npm run clean;
npm run package;
npx gulp clean:cleanExceptTests;
npm run testSmoke;
azure storage blob upload python*.vsix $AZURE_STORAGE_CONTAINER ms-python-insiders.vsix --account-name $AZURE_STORAGE_ACCOUNT --account-key $AZURE_STORAGE_ACCESS_KEY --quiet;
fi
- if [[ $BUNDLE == "true" && $AZURE_STORAGE_ACCOUNT && "$TRAVIS_BRANCH" == release* && "$TRAVIS_PULL_REQUEST" == "false" ]]; then
npm run clean;
npm run package;
npx gulp clean:cleanExceptTests;
npm run testSmoke;
azure storage blob upload python*.vsix $AZURE_STORAGE_CONTAINER ms-python-$TRAVIS_BRANCH.vsix --account-name $AZURE_STORAGE_ACCOUNT --account-key $AZURE_STORAGE_ACCESS_KEY --quiet;
fi
- bash <(curl -s https://codecov.io/bash)