Skip to content

Commit e07b84b

Browse files
committed
Removed DEBUG build from Windows CI
1 parent f7701b8 commit e07b84b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: windows-latest
1616
strategy:
1717
matrix:
18-
build_type: [Release, Debug]
18+
build_type: [Release]
1919
build_shared: [ON, OFF]
2020
steps:
2121
- name: Checkout repository
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: windows-latest
6464
strategy:
6565
matrix:
66-
build_type: [Release, Debug]
66+
build_type: [Release]
6767
build_shared: [ON, OFF]
6868
steps:
6969
- name: Checkout repository
@@ -91,4 +91,4 @@ jobs:
9191
- name: Install
9292
working-directory: build
9393
run: cmake --install . --config ${{ matrix.build_type }}
94-
94+

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ if(SPARROW_PYCAPSULE_BUILD_SHARED)
165165
else()
166166
message(STATUS "🔧 Build static library")
167167
set(SPARROW_PYCAPSULE_LIBRARY_TYPE STATIC)
168-
list(APPEND SPARROW_PYCAPSULE_COMPILE_DEFINITIONS SPARROW_STATIC_LIB)
168+
list(APPEND SPARROW_PYCAPSULE_COMPILE_DEFINITIONS SPARROW_PYCAPSULE_STATIC_LIB)
169169
endif()
170170

171171
add_library(sparrow-pycapsule ${SPARROW_PYCAPSULE_LIBRARY_TYPE} ${SPARROW_PYCAPSULE_HEADERS} ${SPARROW_PYCAPSULE_SOURCES})
@@ -291,4 +291,4 @@ install(FILES
291291
install(EXPORT ${PROJECT_NAME}-targets
292292
FILE ${PROJECT_NAME}Targets.cmake
293293
NAMESPACE sparrow::
294-
DESTINATION ${SPARROW_CMAKECONFIG_INSTALL_DIR})
294+
DESTINATION ${SPARROW_CMAKECONFIG_INSTALL_DIR})

0 commit comments

Comments
 (0)