Skip to content

Commit

Permalink
Merge branch 'main' into projectmubot/submodules/mu_feature_config/2.…
Browse files Browse the repository at this point in the history
…0.13
  • Loading branch information
apop5 authored Jul 23, 2024
2 parents fe4bcc1 + 2320ec9 commit 5c0d0d4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,9 @@ clear = true
command = "cargo"
args = ["tarpaulin", "@@split(INDIVIDUAL_PACKAGE_TARGETS, )", "@@split(COV_FLAGS, )", "--output-dir", "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/target"]
dependencies = ["individual-package-targets"]

[tasks.clippy]
description = "Run cargo clippy."
clear = true
command = "cargo"
args = ["clippy", "--all-targets", "--", "-D", "warnings"]
2 changes: 1 addition & 1 deletion Platforms/QemuQ35Pkg/PlatformBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Declare test whose failure will not return a non-zero exit code
FAILURE_EXEMPT_TESTS = {
# example "PiValueTestApp.efi": datetime.datetime(3141, 5, 9, 2, 6, 53, 589793),
"DxePagingAuditTestApp.efi": datetime.datetime(2024, 4, 17, 0, 0, 0, 0)
"DxePagingAuditTestApp.efi": datetime.datetime(2024, 7, 22, 0, 0, 0, 0)
}

# Allow failure exempt tests to be ignored for 90 days
Expand Down
2 changes: 1 addition & 1 deletion Platforms/QemuSbsaPkg/PlatformBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# Declare test whose failure will not return a non-zero exit code
FAILURE_EXEMPT_TESTS = {
# example "PiValueTestApp.efi": datetime.datetime(3141, 5, 9, 2, 6, 53, 589793),
"DxePagingAuditTestApp.efi": datetime.datetime(2024, 4, 17, 0, 0, 0, 0)
"DxePagingAuditTestApp.efi": datetime.datetime(2024, 7, 22, 0, 0, 0, 0)
}

# Allow failure exempt tests to be ignored for 90 days
Expand Down
2 changes: 1 addition & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ newline_style = "Windows" # Always use Windows line endings '\r\n'
reorder_impl_items = false # Do not force where type and const before macros and methods in impl blocks.
reorder_imports = true # Do reorder import and extern crate statements alphabetically for readability.
reorder_modules = true # Do reorder mod declarations alphabetically for readability.
tab_spaces = 2 # Use 2 spaces for indentation (Rust default is 4).
tab_spaces = 4 # Use 4 spaces for indentation (Rust default).
unstable_features = false # Do not use unstable rustfmt features.
use_small_heuristics = "Max" # Set all granular width settings to the same as max_width (do not use heuristics)
wrap_comments = false # Leave comment formatting to author's discretion

0 comments on commit 5c0d0d4

Please sign in to comment.