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
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