Skip to content

Commit 8dcb3a0

Browse files
authored
Add -Zfmt-debug=none to nightly CI (#73)
* Add -Zfmt-debug=none to nightly CI * Update libstd example to include -Zfmt-debug
1 parent cbab928 commit 8dcb3a0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ jobs:
7575
working-directory: ${{ matrix.project_dir }}
7676
run: >
7777
rustup component add rust-src;
78-
RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features="optimize_for_size" --target x86_64-unknown-linux-gnu --release;
78+
RUSTFLAGS="-Zlocation-detail=none -Zfmt-debug=none" cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features="optimize_for_size" --target x86_64-unknown-linux-gnu --release;
7979
cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target x86_64-unknown-linux-gnu --release;

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ host: x86_64-apple-darwin
198198
# Use that target triple when building with build-std.
199199
# Add the =std,panic_abort to the option to make panic = "abort" Cargo.toml option work.
200200
# See: https://github.com/rust-lang/wg-cargo-std-aware/issues/56
201-
$ RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build -Z build-std=std,panic_abort \
201+
$ RUSTFLAGS="-Zlocation-detail=none -Zfmt-debug=none" cargo +nightly build \
202+
-Z build-std=std,panic_abort \
202203
-Z build-std-features="optimize_for_size" \
203204
--target x86_64-apple-darwin --release
204205
```

0 commit comments

Comments
 (0)