Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/config/out_of_tree_extensions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if (NOT MINGW AND NOT ${WASM_ENABLED})
endif()

# mingw CI with all extensions at once is somehow not happy
if (NOT MINGW AND NOT ${BUILD_COMPLETE_EXTENSION_SET})
if (NOT MINGW AND ${BUILD_COMPLETE_EXTENSION_SET})
################# SPATIAL
duckdb_extension_load(spatial
DONT_LINK LOAD_TESTS
Expand Down Expand Up @@ -185,7 +185,7 @@ duckdb_extension_load(fts
)

################# ENCODINGS
if (NOT ${WASM_ENABLED} AND NOT ${BUILD_COMPLETE_EXTENSION_SET})
if (NOT ${WASM_ENABLED} AND ${BUILD_COMPLETE_EXTENSION_SET})
duckdb_extension_load(encodings
LOAD_TESTS
DONT_LINK
Expand Down
Loading