feat: optimize build time for dev

This commit is contained in:
Cyrix126 2024-11-19 15:16:15 +01:00
parent cf28482193
commit 2695b1e116
3 changed files with 8 additions and 12 deletions

View file

@ -17,7 +17,7 @@ jobs:
run: |
git clone https://github.com/BurtonQin/lockbud.git
cd lockbud
sed -i 's/2024-10-05/2024-10-11/g' rust-toolchain.toml
sed -i 's/-2024-10-05//g' rust-toolchain.toml
cargo install --path .
cd ..
cargo clean

View file

@ -1,4 +1,4 @@
cargo-features = ["profile-rustflags"]
cargo-features = ["profile-rustflags", "codegen-backend"]
[package]
name = "gupaxx"
version = "1.5.3"
@ -8,20 +8,15 @@ documentation = "https://github.com/cyrix126/gupaxx"
edition = "2021"
[profile.release]
# panic = "abort"
panic = "abort"
lto = "fat"
codegen-units = 1
incremental = false
# strip = "symbols"
strip = "symbols"
rustflags = ["-Zlocation-detail=none"]
[profile.dev]
opt-level = 1
debug = true
strip = "none"
debug-assertions = true
overflow-checks = true
incremental = true
codegen-backend = "cranelift"
[features]
default = []

View file

@ -1,4 +1,5 @@
[toolchain]
channel = "nightly-2024-10-11"
components = [ "rustfmt", "rustc-dev", "cargo", "clippy", "rust-analyzer", "rust-src", "llvm-tools-preview"]
# channel = "nightly-2024-10-11"
channel = "nightly"
components = [ "rustfmt", "rustc-dev", "cargo", "clippy", "rust-analyzer", "rust-src", "llvm-tools-preview", "rustc-codegen-cranelift-preview"]
target = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin","x86_64-pc-windows-gnu"]