Add component detection step to builds
- aspnet/AspNetCore-Internal#1254
This commit is contained in:
parent
9251dfe7c0
commit
d46990856a
|
|
@ -77,6 +77,11 @@ jobs:
|
||||||
- script: ./build.cmd -ci -sign /t:SignCheck /p:SignType=$(_SignType)
|
- script: ./build.cmd -ci -sign /t:SignCheck /p:SignType=$(_SignType)
|
||||||
displayName: Run sign check
|
displayName: Run sign check
|
||||||
condition: eq(variables['_SignType'], 'real')
|
condition: eq(variables['_SignType'], 'real')
|
||||||
|
|
||||||
|
# Detect OSS Components in use in the product. Only needs to run on one OS in the matrix.
|
||||||
|
- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
|
||||||
|
displayName: Detect components
|
||||||
|
condition: eq(variables['system.pullrequest.isfork'], false)
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: Windows_Packages
|
- name: Windows_Packages
|
||||||
path: artifacts/packages/
|
path: artifacts/packages/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue