Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Resolve the MEOS source commit
id: meos
# The MEOS catalog (meos-idl.json) and the libmeos build are derived from one
# upstream MobilityDB commit, recorded once in tools/meos-source-commit.txt. CI
# reads it so the derived catalog and the native library stay in lockstep with
# the pinned surface — bumping the surface is a single edit there, no SHA duplicated.
run: echo "sha=$(tr -d '[:space:]' < tools/meos-source-commit.txt)" >> "$GITHUB_OUTPUT"

- name: Provision MEOS (catalog + all-families libmeos)
id: provision
uses: MobilityDB/MEOS-API/.github/actions/provision-meos@master
with:
mobilitydb-ref: master
mobilitydb-ref: ${{ steps.meos.outputs.sha }}
build-libmeos: "true"

- name: Setup Python
Expand Down
1 change: 1 addition & 0 deletions tools/meos-source-commit.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
21eb87481e000b52f5136979d0396f81fbfd2a1b
Loading