Automate F-Droid updates and metadata #825
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
2 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#825
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Follow-up of #33
As I said in organicmaps/organicmaps#33 (comment):
I.e. you can change the update mode to automatically update based on tag changes instead of source code stuff.
Or let's find another way to automate these updates.
@relan said you do this manually, but without wanting to deny your commitment, I fear this does not scale, especially for the amount of fast updates you do here. That's why I continue to propose automatic updates, then the maintenance burden of that F-Droid… I don't get why you all call for people to do that, just let machines do it, they are far more reliable! 🙃
Ideas
More information on how to do this on this page.
/cc @IzzySoft as he knows more stuff about that, I'm just an F-Droid user
I fully agree this is better automated – as manual updates unnecessarily bind resources on both ends, also delaying updates to show up on F-Droid as you'll always have to wait until a maintainer finds time to review and merge.
Well, the
versionName
is a bit crazy and will make that hard. Example:No way to map that. We can do with a fixed pre- or suffix (like
2021-06-23-FDroid
), but not with a dynamic one (here: including the commit hash). We might be able to skip the tag name and specify a file to look at – but yourbuild.gradle
does not even mention the literalversionCode
andversionName
(I guess you dynamically calculate them at build time – that won't work with auto-updates at F-Droid). So we'd need at least a file containing the literal versionName & versionCode to get this running. Your current declaration (calculating the values) won't work; further, it's not reproducible as it depends on the day the actual build is done; so if we need to rebuild for some reason, versionName and versionCode would change. That's no good.Thanks, @IzzySoft, what is with another UpdateCheckMode? I.e. can't F-Droid use
Tags
there and instead check the git repository for a new tag?Our builds/versions are reproducible. The date tag is generated from the last commit's UTC date, not from the date of the build.
Yes, take a look at
UpdateCheckData
. Since a recent update, that can be used in conjunction with tags and files inside the repo itself. Example block from a Flutter app:Note that neither
AutoUpdateMode
norUpdateCheckMode
contain a tag name pattern here.Ah, OK – my bad (I'm not an Android dev, so please forgive my misreading). Still, we'll need literal values, as CheckUpdates does not execute gradle but just performs RegEx matching.
That's the reason why we didn't yet automate builds with F-Droid :) Any solution which won't break our existing workflow for Google Play is appreciated.
Well, putting together the pieces from above and constructing an example: right before creating the tag, you could generate a
version.txt
file with a single line, e.g.That could then be matched by
Only problem here is that, as you generate those values from the release commit hash, you have a hen-and-egg issue: you need to put in the commit hash before you commit (which is why it's not the best idea using the commit has in
versionName
). If you could do without that for thefdroid
flavor this could work, as the date will hopefully be the same for the "commit before", so2021.06.23-9-FDroid
and21062309
would match both. CheckUpdates would then look at the latest tag, scanversion.txt
with the RegEx specified, see theversionCode
is higher than the latest it has locally, and build it. If the resulting APK then matches inversionCode
andversionName
, it will be published. No MRs needed.I've pushed #1033:
android/src/fdroid/play/
.2021.08.08-7-android
for testing.I also took a quick look at https://gitlab.com/fdroid/fdroidserver/-/blob/master/fdroidserver/checkupdates.py#L146. I tested this code locally (see https://gist.github.com/rtsisyk/b04e1bbd6fa178eb473a0a07025a805c) and it seems to be working:
@relan could you please help us with updating fdroidata? Please play with real checkupdates.py to check that it actually works.
The
android
component is missing in the path. Works fine after I changed the UCD line toSo you can delete the test tag and I'll enable autoupdates in fdroiddata.
Done:
2b91d48fde
Can someone help? There is no cmake 3.18.1 from Android SDK installed and fdroid build fails:
https://monitor.f-droid.org/builds/log/app.organicmaps/21081906
Here it is:
482bfdad7b/metadata/app.organicmaps.yml (L316)
@relan it failed again: https://monitor.f-droid.org/builds/log/app.organicmaps/21090106#site-footer
Could it be due to missing Command Line Tools from Android SDK, as mentioned here: https://github.com/flutter/flutter/issues/56778#issuecomment-882000396 ?
Ouch! Fixed in
4f60953dde
. Tested that it builds now.This one is done. Thanks all!