chiark / gitweb /
Merge branch 'some-bug-fixes' into 'master'
[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 cd $WORKSPACE/tests
45 ./run-tests ~jenkins/workspace/[[:upper:]a-eg-z]\*
46
47
48 #------------------------------------------------------------------------------#
49 # test building the source tarball
50 cd $WORKSPACE
51 python2 setup.py sdist
52
53
54 #------------------------------------------------------------------------------#
55 # test install using site packages
56 cd $WORKSPACE
57 rm -rf $WORKSPACE/env
58 virtualenv --python=python2 --system-site-packages $WORKSPACE/env
59 . $WORKSPACE/env/bin/activate
60 pip install -e $WORKSPACE
61 python2 setup.py install
62
63 # run tests in new pip+virtualenv install
64 . $WORKSPACE/env/bin/activate
65 fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests ~jenkins/
66
67
68 #------------------------------------------------------------------------------#
69 # run git pre-commit hook for pep8, pyflakes, etc
70 sh hooks/pre-commit
71
72
73 #------------------------------------------------------------------------------#
74 # run pylint
75
76 cd $WORKSPACE
77 set +e
78 # use the virtualenv python so pylint checks against its installed libs
79     PYTHONPATH=$WORKSPACE/.pylint-plugins python2 /usr/bin/pylint \
80         --output-format=parseable --reports=n \
81         --load-plugins astng_hashlib \
82         fdroidserver/*.py fdroid makebuildserver setup.py > $WORKSPACE/pylint.parseable
83
84 # to only tell jenkins there was an error if we got ERROR or FATAL, uncomment these:
85 # running pylint in the virtualenv is causing this FATAL error, which is a bug:
86 # https://bitbucket.org/logilab/pylint/issue/73/pylint-is-unable-to-import
87 [ $(($? & 1)) = "1" ] && echo "FATALs found"
88 [ $(($? & 2)) = "2" ] && exit 2
89 [ $(($? & 4)) = "4" ] && exit 4
90 set -e
91