Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rcgoodfellow committed Dec 14, 2023
1 parent 1a5ea36 commit 0622529
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/buildomat/jobs/falcon-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rustc --version

banner check
ptime -m cargo check --features falcon
ptime -m cargo xtask clippy
ptime -m clippy --features falcon --all-targets

banner build
ptime -m cargo build --features falcon --release \
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 8 additions & 11 deletions xtask/src/task_clippy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,14 @@ pub(crate) fn cmd_clippy(strict: bool, quiet: bool) -> Result<()> {
run_clippy(&["-p", "propolis-server", "--features", "omicron-build"])?;

// Check the Falcon bits
#[cfg(target_os = "illumos")]
{
failed |= run_clippy(&[
"--features",
"falcon",
"-p",
"propolis-server",
"-p",
"propolis-client",
])?;
}
failed |= run_clippy(&[
"--features",
"falcon",
"-p",
"propolis-server",
"-p",
"propolis-client",
])?;

// Check the mock server
failed |= run_clippy(&["-p", "propolis-mock-server"])?;
Expand Down

0 comments on commit 0622529

Please sign in to comment.