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