mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 14:30:30 +03:00
run-tests: skip tests that require apksigner when running on Java8
The buildserver VM has not been upgraded yet to bullseye, so it is still on Debian/stretch. The buildserver VM does not need to run `fdroid update`, `fdroid signindex`, etc. so this new apksigner requirement should not affect app builds even though they are stuck on Debian/stretch.
This commit is contained in:
parent
3182b77d18
commit
fe22958476
3 changed files with 15 additions and 0 deletions
|
|
@ -202,6 +202,17 @@ if use_apksigner; then
|
|||
grep -F '<application id=' repo/index.xml > /dev/null
|
||||
fi
|
||||
|
||||
|
||||
#------------------------------------------------------------------------------#
|
||||
echo_header "TODO remove once buildserver image is upgraded to bullseye with apksigner"
|
||||
|
||||
if java -version 2>&1 | grep -F 1.8.0; then
|
||||
echo "Skipping the rest because they require apksigner 30.0.0+ which does not run on Java8"
|
||||
echo SUCCESS
|
||||
exit
|
||||
fi
|
||||
|
||||
|
||||
#------------------------------------------------------------------------------#
|
||||
echo_header "test UTF-8 metadata"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue