You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support in local environment
* Add support in local environment
* Update tools/ExecuteCIStep.ps1
Co-authored-by: Jin Lei <[email protected]>
Co-authored-by: Jin Lei <[email protected]>
Copy file name to clipboardExpand all lines: tools/ExecuteCIStep.ps1
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@
15
15
16
16
# Usage: 1. This script can be called by build.proj used in CI pipeline
17
17
# 2. Can be used to do static analysis in local env. Such as: .\tools\ExecuteCIStep.ps1 -StaticAnalysisSignature -TargetModule "Accounts;Compute"
18
+
# 3. Can run static analyis for all the module built in artifacts. Such as: .\tools\ExecuteCIStep.ps1 -StaticAnalysisSignature will run static analysis signature check for all the modules under artifacts/debug.
18
19
Param(
19
20
[Switch]
20
21
$Build,
@@ -199,12 +200,18 @@ If ($Build)
199
200
Return
200
201
}
201
202
202
-
If (-Not$PSBoundParameters.ContainsKey("TargetModule"))
0 commit comments