Add a one-command refresh against upstream MEOS - #45
Merged
estebanzimanyi merged 1 commit intoJul 28, 2026
Merged
Conversation
tools/refresh-from-master.sh refreshes the generated UDF layer against upstream MEOS in one command: it runs the shared MEOS-API refresh-jvm-chain.sh over this repo, deriving libmeos and the catalog from MobilityDB master, building the JMEOS jar, and regenerating the surface. tools/refresh.conf holds this consumer last leg (the repo-root module, the org.jmeos:meos:1.0 coordinates, the mvn command). GENERATION.md leads with the one-liner; .gitignore excludes the .meos-chain scratch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
tools/refresh-from-master.shrefreshes the generated UDF layer against upstream MEOS in one command:It runs the shared
MobilityDB/MEOS-APIrefresh-jvm-chain.shover this repo — deriving libmeos and the catalog from MobilityDB master, building the JMEOS jar, and regenerating the surface — so a developer runs one command instead of walking four repos by hand. Options pass through (e.g.--mdb ~/src/MobilityDBto refresh against a local MobilityDB branch,--skip-tests).Files
tools/refresh.conf— this consumer's last leg: the repo-root Maven module, theorg.jmeos:meos:1.0jar coordinates, and themvn … clean testcommand.tools/refresh-from-master.sh— the thin wrapper that locates the shared script (cloning MEOS-API master the first time) and calls it. Byte-identical to the one in MobilityFlink and MobilityKafka.GENERATION.mdleads with the one-liner..gitignoreexcludes the wrapper's.meos-chain/scratch dir.Note
The one-liner uses
refresh-jvm-chain.shandprovision-meos.shfrom MEOS-API; the wrapper clones MEOS-API master to obtain them, so this PR is self-contained.