Skip to content

Commit 998f51f

Browse files
committed
Do not promote warnings as errors
Signed-off-by: Julien Jerphanion <[email protected]>
1 parent aa78980 commit 998f51f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/unix_impl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
--preset mamba-unix-shared-${{ inputs.build_type }} \
4141
-D CMAKE_CXX_COMPILER_LAUNCHER=sccache \
4242
-D CMAKE_C_COMPILER_LAUNCHER=sccache \
43-
-D MAMBA_WARNING_AS_ERROR=ON \
43+
-D MAMBA_WARNING_AS_ERROR=OFF \
4444
-D BUILD_LIBMAMBAPY=OFF \
4545
-D ENABLE_MAMBA_ROOT_PREFIX_FALLBACK=OFF
4646
cmake --build build/ --parallel

libmambapy/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def libmambapy_version():
2727
def get_cmake_args():
2828
cmake_args = [f"-DMAMBA_INSTALL_PYTHON_EXT_LIBDIR={CMAKE_INSTALL_DIR()}/src/libmambapy"]
2929
if sys.platform != "win32" and sys.platform != "cygwin":
30-
cmake_args += ["-DMAMBA_WARNING_AS_ERROR=ON"]
30+
cmake_args += ["-DMAMBA_WARNING_AS_ERROR=OFF"]
3131
return cmake_args
3232

3333

0 commit comments

Comments
 (0)