Skip to content

Commit 23dbbc2

Browse files
committed
chore(ci): disable telemetry in workflow
1 parent 2b35ef7 commit 23dbbc2

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
@@ -11,7 +11,7 @@ sqlite3 := 'sqlite3'
1111
ci_mode := if env('CI', '') != '' {'1'} else {''}
1212
# cargo-binstall needs a workaround due to caching
1313
# ci_mode might be manually set by user, so re-check the env var
14-
binstall_args := if env('CI', '') != '' {'--no-track'} else {''}
14+
binstall_args := if env('CI', '') != '' {'--no-track --disable-telemetry'} else {''}
1515
export RUSTFLAGS := env('RUSTFLAGS', if ci_mode == '1' {'-D warnings'} else {''})
1616
export RUSTDOCFLAGS := env('RUSTDOCFLAGS', if ci_mode == '1' {'-D warnings'} else {''})
1717
export RUST_BACKTRACE := env('RUST_BACKTRACE', if ci_mode == '1' {'1'} else {''})

0 commit comments

Comments
 (0)