Test more compiler feature flag combinations on CI
This commit is contained in:
parent
c04ad07b05
commit
8a7703a2ac
2 changed files with 7 additions and 0 deletions
|
@ -49,8 +49,12 @@ variables:
|
|||
- cargo check --verbose
|
||||
- cargo check --no-default-features --features send2 --verbose
|
||||
- cargo check --no-default-features --features send3 --verbose
|
||||
- cargo check --no-default-features --features send2,send3 --verbose
|
||||
- cargo check --no-default-features --features send2,send3,archive --verbose
|
||||
- cargo check --no-default-features --features send2,send3,history --verbose
|
||||
- cargo check --no-default-features --features send2,send3,qrcode --verbose
|
||||
- cargo check --no-default-features --features send2,send3,urlshorten --verbose
|
||||
- cargo check --no-default-features --features send2,send3,infer-command --verbose
|
||||
- cargo check --features no-color --verbose
|
||||
check-stable:
|
||||
<<: *check-base
|
||||
|
|
|
@ -13,6 +13,9 @@ impl CmdArg for ArgBasicAuth {
|
|||
fn build<'b, 'c>() -> Arg<'b, 'c> {
|
||||
Arg::with_name("basic-auth")
|
||||
.long("basic-auth")
|
||||
.alias("basic-authentication")
|
||||
.alias("http-basic-authentication")
|
||||
.alias("http-basic-auth")
|
||||
.value_name("USER:PASSWORD")
|
||||
.env("FFSEND_BASIC_AUTH")
|
||||
.hide_env_values(true)
|
||||
|
|
Loading…
Add table
Reference in a new issue