We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b07b04 commit 567df11Copy full SHA for 567df11
.github/workflows/wheels.yml
@@ -66,6 +66,8 @@ jobs:
66
# mix in crypto libraries into every entry
67
matrix = [{**m, "crypto": c} for m in matrix for c in crypto]
68
69
+ matrix = [{"os": "ubuntu-24.04-arm", "arch": "armv7l", "libc": "glibc"}]
70
+
71
# add display names, these are just for displaying on GitHub
72
for m in matrix:
73
m["display-name"] = ", ".join(filter(None, [
CMakeLists.txt
@@ -85,6 +85,7 @@ nanobind_add_stub(
85
# Link libdave
86
set(INSTALL_VCPKG_LICENSES ON)
87
add_subdirectory(${LIBDAVE_SRC_PATH})
88
+target_compile_options(libdave PUBLIC -Wconversion)
89
90
target_include_directories(_dave_impl PRIVATE "${LIBDAVE_SRC_PATH}/src")
91
target_link_libraries(_dave_impl PRIVATE libdave)
0 commit comments