forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #196 from project-chip/master
update local master
- Loading branch information
Showing
15,871 changed files
with
3,327,995 additions
and
1,296,497 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This file contains settings for local github action runner act: | ||
# https://github.com/nektos/act | ||
# | ||
# It is recommended to run specific jobs that you need, all jobs except those | ||
# running on should darwin work. | ||
# e.g. act -j build_linux | ||
# | ||
# It is recommended to set up a separate bridge network | ||
# and possibly define it in ~/.actrc like so: | ||
# --network=bridge | ||
# https://docs.docker.com/network/drivers/bridge/ | ||
|
||
# Remove containers after finishing a job, comment out for debugging | ||
--rm | ||
|
||
# Reuse the checkout from host, otherwise act will do docker cp that makes | ||
# running jobs a lot longer even on SSD. Clean up your .environment before | ||
# running it. | ||
--bind | ||
|
||
# Easier to have 1:1 match between triggering jobs and reading logs when they | ||
# use the same name | ||
--log-prefix-job-id | ||
|
||
# Default runner image does not include enough. | ||
# https://github.com/nektos/act#default-runners-are-intentionally-incomplete | ||
-P ubuntu-latest=catthehacker/ubuntu:full-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,49 @@ | ||
--- | ||
Checks: 'readability-else-after-return,modernize-use-nullptr,bugprone-*,-bugprone-not-null-terminated-result,-bugprone-suspicious-memory-comparison,-bugprone-argument-comment,-bugprone-unused-return-value,-bugprone-branch-clone,-bugprone-easily-swappable-parameters,-bugprone-reserved-identifier,-bugprone-macro-parentheses,-bugprone-forward-declaration-namespace,-bugprone-forwarding-reference-overload,-bugprone-undelegated-constructor,-bugprone-sizeof-expression,-bugprone-implicit-widening-of-multiplication-result,-bugprone-too-small-loop-variable,-bugprone-narrowing-conversions,-bugprone-misplaced-widening-cast,-bugprone-suspicious-include,-bugprone-signed-char-misuse,-bugprone-copy-constructor-init,-clang-analyzer-core.CallAndMessage,-clang-analyzer-core.UndefinedBinaryOperatorResult,-clang-analyzer-core.NullDereference,-clang-analyzer-optin.cplusplus.UninitializedObject,-clang-analyzer-core.uninitialized.Branch,-clang-analyzer-optin.performance,-clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker,-clang-analyzer-deadcode.DeadStores,-clang-analyzer-cplusplus.Move,-clang-analyzer-optin.cplusplus.VirtualCall,-clang-analyzer-security.insecureAPI.strcpy,-clang-analyzer-nullability.NullablePassedToNonnull,-clang-analyzer-optin.performance.Padding,-clang-analyzer-security.insecureAPI.bzero,-clang-analyzer-unix.cstring.NullArg,-clang-analyzer-security.insecureAPI.rand,-clang-analyzer-core.NonNullParamChecker,-clang-analyzer-nullability.NullPassedToNonnull,-clang-analyzer-unix.Malloc,-clang-analyzer-valist.Unterminated,-clang-analyzer-cplusplus.NewDeleteLeaks,-clang-diagnostic-implicit-int-conversion' | ||
Checks: > | ||
bugprone-*, | ||
modernize-redundant-void-arg, | ||
modernize-use-bool-literals, | ||
modernize-use-nullptr, | ||
performance-for-range-copy, | ||
readability-const-return-type, | ||
readability-else-after-return, | ||
readability-redundant-control-flow, | ||
readability-redundant-string-cstr, | ||
readability-redundant-string-init, | ||
-bugprone-assignment-in-if-condition, | ||
-bugprone-branch-clone, | ||
-bugprone-copy-constructor-init, | ||
-bugprone-easily-swappable-parameters, | ||
-bugprone-forward-declaration-namespace, | ||
-bugprone-forwarding-reference-overload, | ||
-bugprone-implicit-widening-of-multiplication-result, | ||
-bugprone-inc-dec-in-conditions, | ||
-bugprone-macro-parentheses, | ||
-bugprone-misplaced-widening-cast, | ||
-bugprone-multi-level-implicit-pointer-conversion, | ||
-bugprone-narrowing-conversions, | ||
-bugprone-not-null-terminated-result, | ||
-bugprone-reserved-identifier, | ||
-bugprone-signed-char-misuse, | ||
-bugprone-suspicious-include, | ||
-bugprone-switch-missing-default-case, | ||
-bugprone-undelegated-constructor, | ||
-bugprone-unused-return-value, | ||
-clang-analyzer-core.CallAndMessage, | ||
-clang-analyzer-core.NonNullParamChecker, | ||
-clang-analyzer-core.NullDereference, | ||
-clang-analyzer-cplusplus.Move, | ||
-clang-analyzer-deadcode.DeadStores, | ||
-clang-analyzer-nullability.NullablePassedToNonnull, | ||
-clang-analyzer-optin.core.EnumCastOutOfRange, | ||
-clang-analyzer-optin.cplusplus.UninitializedObject, | ||
-clang-analyzer-optin.cplusplus.VirtualCall, | ||
-clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker, | ||
-clang-analyzer-optin.performance, | ||
-clang-analyzer-optin.performance.Padding, | ||
-clang-analyzer-security.insecureAPI.rand, | ||
-clang-analyzer-security.insecureAPI.strcpy, | ||
-clang-analyzer-unix.Malloc, | ||
-clang-diagnostic-implicit-int-conversion | ||
WarningsAsErrors: '*' | ||
HeaderFilterRegex: '(src|examples|zzz_generated|credentials)' | ||
HeaderFilterRegex: '(src|examples|zzz_generated|credentials).*(?<!third_party.*repo)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.