chiark / gitweb /
get minimum aapt version from fdroidserver/common.py for CI tests
[fdroidserver.git] / jenkins-test
index 65064d3bb737fa6a4b5ae67e8bc1f98be738a4be..245cbaa6cba499c3dcefdfa8e0e1040b8eaf56da 100755 (executable)
@@ -20,33 +20,42 @@ fi
 set -e
 set -x
 
-cd tests
-./run-tests $WORKSPACE/fdroiddata/unsigned
-
 # set up Android SDK to use the Debian packages in stretch
 export ANDROID_HOME=/usr/lib/android-sdk
 
-# the way we handle jenkins slaves doesn't copy the workspace to the slaves
-# so we need to "manually" clone the git repo hereā€¦
+rm -rf "$WORKSPACE/.testfiles"
+cd tests
+echo "Debian's build-tools is too old, remove once the package has been updated"
+sed -i '/android.permission.READ_EXTERNAL_STORAGE/d' repo/index.xml
+sed -i '/^diff -uw .*index-v1.json$/d' run-tests
+./run-tests $WORKSPACE/fdroiddata/repo
+
+# this is set up and managed by jenkins-build-all
 cd $WORKSPACE/fdroiddata
 
-test -e config.py || ../fdroid init --verbose
+rm -f config.py keystore.jks
+../fdroid init --verbose
+../fdroid update
 
 export GNUPGHOME=$WORKSPACE/tests/gnupghome
-echo "build_server_always = True" > config.py
+gpg --import $GNUPGHOME/secring.gpg
+
+echo "build_server_always = True" >> config.py
 echo "gpghome = '$GNUPGHOME'" >> config.py
 echo "gpgkey = 'CE71F7FB'" >> config.py
+chmod 0600 config.py
+sed -i '/\s*repo_key_sha256\s*=.*/d' config.py
 
 # publish process when building and signing are on separate machines
 test -d repo || mkdir repo
 test -d archive || mkdir archive
 # when everything is copied over to run on SIGN machine
-../fdroid publish --verbose
-../fdroid gpgsign --verbose
+../fdroid publish
+../fdroid gpgsign
 # when everything is copied over to run on BUILD machine
-../fdroid update --verbose --nosign
+../fdroid update --nosign
 # when everything is copied over to run on SIGN machine
 ../fdroid signindex --verbose
 
-../fdroid rewritemeta --verbose
+../fdroid rewritemeta --quiet
 git --no-pager diff