Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] Debug wheel-build failure [WIP] #2390

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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: 4 additions & 0 deletions libtiledbsoma/src/external/src/nanoarrow/nanoarrow.c
Original file line number Diff line number Diff line change
Expand Up @@ -1712,6 +1712,10 @@ int64_t ArrowSchemaToString(const struct ArrowSchema* schema, char* out, int64_t
return snprintf(out, n, "[invalid: schema is released]");
}

if (out == NULL) {
return 0;
}

struct ArrowSchemaView schema_view;
struct ArrowError error;

Expand Down
2 changes: 1 addition & 1 deletion scripts/bld
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if [ "$(uname -m)" == "aarch64" ]; then
fi

# NOTE: set to true to debug the cmake build
if false; then
if true; then
# Debug note: this is _incredibly_ helpful in that it reveals the actual compile lines etc which
# make itself shows by default but which cmake-driven make hides by default. Use this for any
# non-trivial cmake debugging.
Expand Down
Loading