Skip to content

Commit 5f6a572

Browse files
authored
Copy only changed file to tmp folder for security check. (Azure#15326)
Co-authored-by: wyunchi-ms <[email protected]>
1 parent db13db4 commit 5f6a572

File tree

4 files changed

+42
-22765
lines changed

4 files changed

+42
-22765
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ src/Stack/
55
src/local-artifacts/*
66
/tools/AzureRM/AzureRM.psm1
77
!.placeholder
8+
SecurityTmp/
9+
tmp/
10+
FilesChanged.txt
11+
CsprojMappings.json
812

913
obj
1014
bin

build.proj

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<Scope Condition="$(Scope) == ''">All</Scope>
3434
<TestFramework Condition="'$(TestFramework)' == ''">netcoreapp2.2</TestFramework>
3535
<IsGenerateBased Condition="'$(IsGenerateBased)' != 'true'">false</IsGenerateBased>
36+
<IsSecurityCheck Condition="'$(IsSecurityCheck)' != 'true'">false</IsSecurityCheck>
3637

3738
<!-- Flags -->
3839
<CodeSign Condition ="'$(CodeSign)' == ''">false</CodeSign>
@@ -119,8 +120,9 @@
119120
<Output TaskParameter="FilesChanged" ItemName="FilesChanged" />
120121
</FilesChangedTask>
121122

122-
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;$(RepoTools)PrepareAutorestModule.ps1&quot;" Condition="'$(IsGenerateBased)' == 'true'"/>
123-
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;. $(RepoTools)/CreateFilterMappings.ps1&quot;" />
123+
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;$(RepoTools)PrepareAutorestModule.ps1&quot;" Condition="'$(IsGenerateBased)' == 'true'"/>
124+
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;$(RepoTools)/CreateFilterMappings.ps1&quot;" />
125+
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;$(RepoTools)/PrepareForSecurityCheck.ps1&quot;" Condition="'$(IsSecurityCheck)' == 'true'"/>
124126

125127
<CIFilterTask FilesChanged="@(FilesChanged)" TargetModule="$(TargetModule)" Mode="$(Configuration)" CsprojMapFilePath="./CsprojMappings.json">
126128
<Output TaskParameter="FilterTaskResult" ItemName="FilterTaskResult" />

tools/PrepareForSecurityCheck.ps1

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# ----------------------------------------------------------------------------------
2+
#
3+
# Copyright Microsoft Corporation
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
# ----------------------------------------------------------------------------------
14+
15+
#This script will pack build artifacts under temporary folder "artifacts/tmp" and output Az.*.nupkg to "artifacts"
16+
17+
18+
param(
19+
)
20+
$ChangedFiles = Get-Content -Path "$PSScriptRoot\..\FilesChanged.txt"
21+
22+
$SecurityTmpFolder = "$PSScriptRoot\..\SecurityTmp"
23+
New-Item -ItemType Directory -Force -Path $SecurityTmpFolder
24+
Remove-Item -Path "$SecurityTmpFolder\*" -Recurse -Force
25+
26+
foreach ($FilePath in $ChangedFiles)
27+
{
28+
$ParentFolder = Split-Path -Path $FilePath -Parent
29+
if (-not (Test-Path -Path "$SecurityTmpFolder\$ParentFolder"))
30+
{
31+
New-Item -Path "$SecurityTmpFolder\$ParentFolder" -ItemType Directory -Force
32+
}
33+
Copy-Item $FilePath "$SecurityTmpFolder\$FilePath"
34+
}

0 commit comments

Comments
 (0)