Skip to content
Merged
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
ci: Also check builds with musl_v1_2_3
  • Loading branch information
tgross35 committed Oct 27, 2025
commit 5d549e9d78da5167c6fc4564b043e3cc0de445a6
4 changes: 4 additions & 0 deletions ci/verify-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@ def test_target(cfg: Cfg, target: Target):
# Equivalent of _TIME_BITS=64
run(cmd, env=env | {"RUST_LIBC_UNSTABLE_GNU_TIME_BITS": "64"})

if "musl" in target_env:
# Check with breaking changes from musl, including 64-bit time_t on 32-bit
run(cmd, env=env | {"RUST_LIBC_UNSTABLE_MUSL_V1_2_3": "1"})

# Test again without default features, i.e. without `std`
run(cmd + ["--no-default-features"])
run(cmd + ["--no-default-features", "--features=extra_traits"])
Expand Down