Skip to content

Commit cfdb3c6

Browse files
committed
chore(ci): disable telemetry in workflow
1 parent ede8e36 commit cfdb3c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ features_flag := '--all-features'
99
ci_mode := if env('CI', '') != '' {'1'} else {''}
1010
# cargo-binstall needs a workaround due to caching
1111
# ci_mode might be manually set by user, so re-check the env var
12-
binstall_args := if env('CI', '') != '' {'--no-track'} else {''}
12+
binstall_args := if env('CI', '') != '' {'--no-track --disable-telemetry'} else {''}
1313
export RUSTFLAGS := env('RUSTFLAGS', if ci_mode == '1' {'-D warnings'} else {''})
1414
export RUSTDOCFLAGS := env('RUSTDOCFLAGS', if ci_mode == '1' {'-D warnings'} else {''})
1515
export RUST_BACKTRACE := env('RUST_BACKTRACE', if ci_mode == '1' {'1'} else {''})

0 commit comments

Comments
 (0)