-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do a bunch of small updates and fixes * Improve docker instructions * Update clang format required version * Require cpp17 * Suppress autovectorization failure warning on clang * Allow non-root installs in dev dockerfile * Allow update script to run even when git fetch is not available * Deprecate unsupported updates * Allow update to 'latest' even when corresponding tag is missing * Rename latest update script according to the new convention * Actually fix "latest" testing mechanism * Add support to "latest" in Version class * Add Release ID that defaults to latest. Must be set explicitly when doing a release * Improve version mismatch error message * Use "latest" as version name when building locally * Add Release preparation instructions * Make sure ci/cd follows release prep instructions * Reorganize dev Dockerfile to allow non-root extension installs * Make update script more robust * Improve build parallelism in update tests * Add version mismatch check to build.c * Remove temporary files to make sure ALTER EXTENSION is run in update * Temporarily disable erroring out from inserts in case of version mismatch to allow update scripts that rebuild the index * Document version mismatch test status
- Loading branch information
1 parent
7b66765
commit 02c653f
Showing
14 changed files
with
170 additions
and
61 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
comment = 'Lantern: Fast vector embedding processing in Postgres' | ||
default_version = '@LANTERNDB_VERSION@' | ||
default_version = '@RELEASE_ID@' | ||
module_pathname = '$libdir/lantern' | ||
relocatable = false |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#ifndef LDB_HNSW_VERSION_H | ||
#define LDB_HNSW_VERSION_H | ||
|
||
#define LDB_BINARY_VERSION "@LANTERNDB_VERSION@" | ||
#define LDB_BINARY_VERSION "@RELEASE_ID@" | ||
#define LDB_BUILD_ID "@BUILD_ID@" | ||
|
||
#endif |
This file contains 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
File renamed without changes.
Oops, something went wrong.