Support overlay database creation

This commit adds support for creating overlay-base and overlay
databases, controlled via the CODEQL_OVERLAY_DATABASE_MODE environment
variable.
This commit is contained in:
Chuan-kai Lin
2025-03-10 10:38:02 -07:00
parent 270886f805
commit ff5f0b9efd
4 changed files with 89 additions and 8 deletions

View File

@@ -3,3 +3,5 @@ export enum OverlayDatabaseMode {
OverlayBase = "overlay-base",
None = "none",
}
export const CODEQL_OVERLAY_MINIMUM_VERSION = "2.20.5";