Skip to content

Commit

Permalink
fix mingw step
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Nov 13, 2024
1 parent 197a3c0 commit e16fe99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ jobs:
duckdb_version: v1.1.3
ci_tools_version: main
extension_name: capi_quack
extra_toolchains: python3
extra_toolchains: python3
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'
5 changes: 2 additions & 3 deletions duckdb_extension_c.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# VCPKG_TARGET_TRIPLET : vcpkg triplet to override
# GEN : allow specifying ninja as generator


.PHONY: build_extension_library_debug build_extension_library_release update_duckdb_headers

#############################################
Expand Down Expand Up @@ -65,8 +64,8 @@ ifeq ($(DUCKDB_PLATFORM),windows_amd64_mingw)
MINGW=1
endif
ifeq ($(MINGW),1)
EXTRA_COPY_STEP_DEBUG=$(PYTHON_VENV_BIN) -c "import shutil;shutil.copyfile('cmake_build/debug/Debug/lib$(EXTENSION_LIB_FILENAME)', '$(OUTPUT_LIB_PATH_DEBUG)')"
EXTRA_COPY_STEP_RELEASE=$(PYTHON_VENV_BIN) -c "import shutil;shutil.copyfile('cmake_build/release/Release/lib$(EXTENSION_LIB_FILENAME)', '$(OUTPUT_LIB_PATH_RELEASE)')"
EXTRA_COPY_STEP_DEBUG=$(PYTHON_VENV_BIN) -c "import shutil;shutil.copyfile('cmake_build/debug/lib$(EXTENSION_LIB_FILENAME)', '$(OUTPUT_LIB_PATH_DEBUG)')"
EXTRA_COPY_STEP_RELEASE=$(PYTHON_VENV_BIN) -c "import shutil;shutil.copyfile('cmake_build/release/lib$(EXTENSION_LIB_FILENAME)', '$(OUTPUT_LIB_PATH_RELEASE)')"
endif

#############################################
Expand Down

0 comments on commit e16fe99

Please sign in to comment.