chiark / gitweb /
README: ppa only works for Ubuntu based systems
[fdroidserver.git] / jenkins-build
1 #!/bin/bash
2 #
3 # this is the script run by the Jenkins server to run the build and tests.  Be
4 # sure to always run it in its dir, i.e. ./jenkins-build.sh, otherwise it might
5 # remove things that you don't want it to.
6
7 if [ `dirname $0` != "." ]; then
8     echo "only run this script like ./`basename $0`"
9     exit
10 fi
11
12 set -e
13 set -x
14
15 if [ -z $WORKSPACE ]; then
16     export WORKSPACE=`pwd`
17 fi
18
19 if [ -z $ANDROID_HOME ]; then
20     if [ -e ~/.android/bashrc ]; then
21         . ~/.android/bashrc
22     else
23         echo "ANDROID_HOME must be set!"
24         exit
25     fi
26 fi
27
28
29 #------------------------------------------------------------------------------#
30 # cache pypi downloads
31 if [ -z $PIP_DOWNLOAD_CACHE ]; then
32     export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
33 fi
34
35
36 #------------------------------------------------------------------------------#
37 # required Java 7 keytool/jarsigner for :file support
38
39 export PATH=/usr/lib/jvm/java-7-openjdk-amd64/bin:$PATH
40
41
42 #------------------------------------------------------------------------------#
43 # run local tests, don't scan fdroidserver/ project for APKs
44
45 # this is a local repo on the Guardian Project Jenkins server
46 apksource=/var/www/fdroid
47
48 cd $WORKSPACE/tests
49 ./run-tests $apksource
50
51
52 #------------------------------------------------------------------------------#
53 # test building the source tarball
54 cd $WORKSPACE
55 python2 setup.py sdist
56
57
58 #------------------------------------------------------------------------------#
59 # test install using site packages
60 cd $WORKSPACE
61 rm -rf $WORKSPACE/env
62 virtualenv --python=python2 --system-site-packages $WORKSPACE/env
63 . $WORKSPACE/env/bin/activate
64 pip install -e $WORKSPACE
65 python2 setup.py install
66
67 # run tests in new pip+virtualenv install
68 . $WORKSPACE/env/bin/activate
69 fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource
70
71
72 #------------------------------------------------------------------------------#
73 # run git pre-commit hook for pep8, pyflakes, etc
74 sh hooks/pre-commit
75
76
77 #------------------------------------------------------------------------------#
78 # run pylint
79
80 cd $WORKSPACE
81 set +e
82 # use the virtualenv python so pylint checks against its installed libs
83     PYTHONPATH=$WORKSPACE/.pylint-plugins python2 /usr/bin/pylint \
84         --output-format=parseable --reports=n \
85         --load-plugins astng_hashlib \
86         fdroidserver/*.py fdroid makebuildserver setup.py > $WORKSPACE/pylint.parseable
87
88 # to only tell jenkins there was an error if we got ERROR or FATAL, uncomment these:
89 # running pylint in the virtualenv is causing this FATAL error, which is a bug:
90 # https://bitbucket.org/logilab/pylint/issue/73/pylint-is-unable-to-import
91 [ $(($? & 1)) = "1" ] && echo "FATALs found"
92 [ $(($? & 2)) = "2" ] && exit 2
93 [ $(($? & 4)) = "4" ] && exit 4
94 set -e
95