xref: /OpenGrok/dev/before_install (revision 3bd7820446e8e609bce24597f107c5ca8add9a25)
1aba5f4cfSVladimir Kotal#!/bin/bash
2aba5f4cfSVladimir Kotal
3aba5f4cfSVladimir Kotalif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
4aba5f4cfSVladimir Kotal	sudo apt-get update -qq
5*3bd78204SVladimir Kotal	sudo apt-get install -qq exuberant-ctags cvs git mercurial cssc bzr subversion monotone rcs rcs-blame python3 python3-pip pep8;
6aba5f4cfSVladimir Kotal	sudo ./scripts/install-bitkeeper.sh
7aba5f4cfSVladimir Kotal	sudo pip3 install --upgrade pip
8aba5f4cfSVladimir Kotal	sudo pip3 install flake8
9aba5f4cfSVladimir Kotalelif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
10aba5f4cfSVladimir Kotal	brew update
11aba5f4cfSVladimir Kotal	brew install ctags cvs
12aba5f4cfSVladimir Kotal	brew upgrade python
13aba5f4cfSVladimir Kotal	pip3 install pep8 flake8
14aba5f4cfSVladimir Kotalfi
15