File tree Expand file tree Collapse file tree 1 file changed +52
-21
lines changed Expand file tree Collapse file tree 1 file changed +52
-21
lines changed Original file line number Diff line number Diff line change 11language : python
2+ dist : bionic
23os :
34 - " linux"
5+ # - "windows"
46env :
5- - NODE_VERSION="14"
6- - NODE_VERSION="13"
7- - NODE_VERSION="12"
8- - NODE_VERSION="11"
9- - NODE_VERSION="10"
10- - NODE_VERSION="9"
11- - NODE_VERSION="8"
12- - NODE_VERSION="7.5"
13- - NODE_VERSION="6.1"
14- - NODE_VERSION="5.11"
15- - NODE_VERSION="4.4"
7+ # - NODE_VERSION="14"
8+ # - NODE_VERSION="13"
9+ # - NODE_VERSION="12"
10+ # - NODE_VERSION="11"
11+ # - NODE_VERSION="10"
12+ # - NODE_VERSION="9"
13+ # - NODE_VERSION="8"
14+ # - NODE_VERSION="7.5"
15+ # - NODE_VERSION="6.1"
16+ # - NODE_VERSION="5.11"
17+ # - NODE_VERSION="4.4"
1618python :
17- - " 3.8"
18- - " 3.7"
19- - " 3.6"
20- - " 3.5"
21- - " 3.4"
22- - " 2.7"
23- - " 2.6"
19+ # - "3.8"
20+ # - "3.7"
21+ # - "3.6"
22+ # - "3.5"
23+ # - "3.4"
24+ # - "3.3"
25+ # - "3.2"
26+ # - "2.7"
27+ # - "2.6"
28+ jobs :
29+ include :
30+ - language : generic
31+ env : PYTHON_VERSION="2.6" NODE_VERSION="14"
32+ - os : " windows"
33+ language : shell
34+ env : PYTHON_VERSION="2.6" NODE_VERSION="14"
35+ before_install :
36+ - echo "WINDOWS!!!"
37+ - choco install nodejs
38+ - node --version
39+ # choco install -y --force [email protected] 40+
2441before_install :
25- - rm -rf ~/.nvm
26- - git clone https://github.com/creationix/nvm.git ~/.nvm
27- - source ~/.nvm/nvm.sh
42+ - env
2843 - nvm install $NODE_VERSION
44+ - |
45+ if [ "${PYTHON_VERSION}" == "2.6" ]; then
46+ sudo apt-get update
47+ sudo apt-get install -yq software-properties-common
48+ sudo add-apt-repository ppa:deadsnakes/ppa -y
49+ sudo apt-get update -q
50+ sudo apt-get install -yq python2.6
51+ sudo update-alternatives --install /usr/local/bin/python python /usr/bin/python2.6 0
52+ export PATH="/usr/local/bin:$PATH"
53+ fi
54+ - which python
55+ - which node
56+ - python -V
57+ - node --version
58+
59+ # choco install nodejs
2960install :
3061 - npm install -d
3162before_script :
You can’t perform that action at this time.
0 commit comments