gitlab-ci: use official build flags for all builds
This commit is contained in:
parent
2b975a3274
commit
f129254d82
|
@ -77,17 +77,17 @@ fdroid-buildserver:
|
|||
- git -C /home/fdroid/fdroidserver checkout -B master origin/master
|
||||
- export PATH="$HOME/fdroidserver:$PATH"
|
||||
- if [ "$CI_PROJECT_NAMESPACE" = "fdroid" ]; then
|
||||
export EXTRA_FLAGS="-Werror";
|
||||
export head=HEAD^^^;
|
||||
echo ORIG_HEAD `git diff --name-only --diff-filter=d ORIG_HEAD...HEAD
|
||||
| sed -n -e 's,^metadata/\([^/][^/]*\)\.txt,\1,p' -e 's,^metadata/\([^/][^/]*\)\.yml,\1,p'`;
|
||||
else
|
||||
export EXTRA_FLAGS="-Wwarn --test --force";
|
||||
git fetch https://gitlab.com/fdroid/fdroiddata.git;
|
||||
export head=FETCH_HEAD;
|
||||
fi
|
||||
- export appids=`git diff --name-only --diff-filter=d $head...HEAD
|
||||
| sed -n -e 's,^metadata/\([^/][^/]*\)\.txt,\1,p' -e 's,^metadata/\([^/][^/]*\)\.yml,\1,p'`
|
||||
- echo $appids | grep '\w' || exit 0
|
||||
- fdroid build --verbose --server --stop $EXTRA_FLAGS --latest $appids
|
||||
- fdroid build --verbose --server --stop --no-tarball --latest $appids
|
||||
- find unsigned -maxdepth 0 -empty -exec exit 0 \;
|
||||
- cd ~/libscout
|
||||
- java -jar build/LibScout.jar -o match -a lib/android-23.jar -p profiles
|
||||
|
|
Loading…
Reference in a new issue