ci : add [no release] keyword + fix sanitizer builds (#23728)

* ci : skip release workflow on master when commit message contains [no release]

Assisted-by: llama.cpp:local pi

* ci : restrict sanitizer builds to x86_64 + fix build type

the spark is apparently too slow for some reason

* tests : fix undefined warning

[no ci]
This commit is contained in:
Georgi Gerganov
2026-05-26 19:05:48 +03:00
committed by GitHub
parent 5190c2ea8d
commit 35a74c8fb9
4 changed files with 16 additions and 5 deletions

View File

@@ -705,10 +705,11 @@ gguf_context_ptr gguf_fetch_gguf_ctx(
}
for (int i = 2; i <= model.n_split; i++) {
char num_buf[6], total_buf[6];
snprintf(num_buf, sizeof(num_buf), "%05d", i);
snprintf(total_buf, sizeof(total_buf), "%05d", (int)model.n_split);
std::string shard_name = split_prefix + "-" + num_buf + "-of-" + total_buf + ".gguf";
char buf_num[32];
char buf_tot[32];
snprintf(buf_num, sizeof(buf_num), "%05d", i);
snprintf(buf_tot, sizeof(buf_tot), "%05d", (int)model.n_split);
std::string shard_name = split_prefix + "-" + buf_num + "-of-" + buf_tot + ".gguf";
auto shard = fetch_or_cached(repo, shard_name, cdir, repo_part, verbose);
if (!shard.has_value()) {