File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5353 if : runner.environment != 'self-hosted'
5454 with :
5555 shared-key : musl
56- workspaces : . -> target/musl
5756
5857 - name : Install cross
5958 run : |
7069 run : docker build -t wallhack-cross:x86_64-unknown-linux-musl -f Dockerfile.cross-musl .
7170
7271 - name : Test (musl — primary)
73- run : CARGO_TARGET_DIR=target/musl cross test --release --target x86_64-unknown-linux-musl
72+ run : cross test --release --target x86_64-unknown-linux-musl
7473
7574 build-musl :
7675 needs : [test-musl]
8584 if : runner.environment != 'self-hosted'
8685 with :
8786 shared-key : musl
88- workspaces : . -> target/musl
8987
9088 - name : Install cross
9189 run : |
@@ -102,14 +100,14 @@ jobs:
102100 run : docker build -t wallhack-cross:x86_64-unknown-linux-musl -f Dockerfile.cross-musl .
103101
104102 - name : Build slim (musl — primary)
105- run : CARGO_TARGET_DIR=target/musl cross build --release --target x86_64-unknown-linux-musl -p wallhack-cli --no-default-features --features slim
103+ run : cross build --release --target x86_64-unknown-linux-musl -p wallhack-cli --no-default-features --features slim
106104
107105 - name : Check slim binary size (musl — primary)
108106 run : ./bench/check_bloat.sh --no-build --only=slim-musl
109107 continue-on-error : true
110108
111109 - name : Build default (musl — primary)
112- run : CARGO_TARGET_DIR=target/musl cross build --release --target x86_64-unknown-linux-musl -p wallhack-cli
110+ run : cross build --release --target x86_64-unknown-linux-musl -p wallhack-cli
113111
114112 - name : Check default binary size (musl — primary)
115113 run : ./bench/check_bloat.sh --no-build --only=default-musl
Original file line number Diff line number Diff line change 1+ // NOTE: This WallhackBuildEnv impl is duplicated in crates/mcp/build.rs.
2+ // build.rs files cannot share code via library crates.
13use std:: collections:: BTreeMap ;
24
35use vergen_gitcl:: {
Original file line number Diff line number Diff line change 1+ // NOTE: This WallhackBuildEnv impl is duplicated in crates/cli/build.rs.
2+ // build.rs files cannot share code via library crates.
13use std:: collections:: BTreeMap ;
24
35use vergen_gitcl:: {
You can’t perform that action at this time.
0 commit comments