mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-11 01:30:30 +03:00
Merge branch 'jenkins-makebs' into 'master'
Jenkins makebs improvements See merge request !105
This commit is contained in:
commit
b0ffc5ce4c
1 changed files with 19 additions and 4 deletions
|
|
@ -49,10 +49,25 @@ echo "apt_package_cache = True" >> $WORKSPACE/makebuildserver.config.py
|
||||||
./makebuildserver
|
./makebuildserver
|
||||||
|
|
||||||
# this can be handled in the jenkins job, or here:
|
# this can be handled in the jenkins job, or here:
|
||||||
if [ ! -e fdroiddata ]; then
|
if [ -e fdroiddata ]; then
|
||||||
git clone --depth 1 --branch master --single-branch \
|
cd fdroiddata
|
||||||
https://gitlab.com/fdroid/fdroiddata.git fdroiddata
|
git pull
|
||||||
|
cd ..
|
||||||
|
else
|
||||||
|
git clone --depth 1 https://gitlab.com/fdroid/fdroiddata.git fdroiddata
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd fdroiddata
|
cd fdroiddata
|
||||||
echo "build_server_always = True" > config.py
|
echo "build_server_always = True" > config.py
|
||||||
../fdroid build info.guardianproject.checkey
|
# Gradle, JNI, preassemble
|
||||||
|
../fdroid build org.adaway:55
|
||||||
|
# Maven
|
||||||
|
../fdroid build org.quantumbadger.redreader:55
|
||||||
|
# Ant, submodules and custom prebuild/build
|
||||||
|
../fdroid build app.openconnect:959
|
||||||
|
# Custom build (make)
|
||||||
|
../fdroid build org.xcsoar:101
|
||||||
|
# Uses verification
|
||||||
|
../fdroid build info.guardianproject.checkey:101
|
||||||
|
# Gradle with retrolambda (JDK7 and JDK8)
|
||||||
|
../fdroid build com.moez.QKSMS:124
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue