File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -6,19 +6,20 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
6
6
echo " cannot update"
7
7
exit 1
8
8
fi
9
- sudo apt-get install -qq cvs git mercurial cssc bzr subversion monotone rcs rcs-blame python3 python3.4-venv python3-pip pep8 nodejs
9
+
10
+ sudo apt-get install -qq cvs git mercurial cssc bzr subversion monotone rcs rcs-blame python3 python3.4-venv python3-pip nodejs
10
11
if [[ $? != 0 ]]; then
11
12
echo " cannot install extra packages"
12
13
exit 1
13
14
fi
15
+
14
16
sudo ./dev/install-bitkeeper.sh
15
- sudo pip3 install --upgrade pip
16
- sudo pip3 install flake8 pylint
17
+ sudo ./dev/install-python-packages
17
18
elif [[ " $TRAVIS_OS_NAME " == " osx" ]]; then
18
19
brew update
19
20
brew install ctags cvs node
20
21
brew upgrade python
21
- pip3 install pep8 flake8 virtualenv pylint
22
+ ./dev/ install-python-packages.sh
22
23
fi
23
24
24
25
sudo ./dev/install-universal_ctags.sh
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ pip3 install --upgrade pip
4
+ pip3 install pep8 flake8 virtualenv pylint
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ box: openjdk:8-jdk
12
12
build :
13
13
steps :
14
14
- install-packages :
15
- packages : sudo maven cvs git mercurial cssc bzr subversion monotone rcs pep8 flake8 autoconf python3 python3-venv build-essential pkg-config
15
+ packages : sudo maven cvs git mercurial cssc bzr subversion monotone rcs autoconf python3 python3-venv build-essential pkg-config
16
16
- script :
17
17
name : Install Universal ctags
18
18
code : ./dev/install-universal_ctags.sh
22
22
/usr/sbin/groupadd -g 1000 foobar
23
23
/usr/sbin/useradd -u 1000 -g 1000 -s /bin/bash -m foobar
24
24
chown -R foobar:foobar $WERCKER_ROOT
25
+ - script :
26
+ name : Install Python packages
27
+ code : ./dev/install-python-packages.sh
25
28
26
29
goals : install
27
30
cache_repo : true
You can’t perform that action at this time.
0 commit comments