mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-05 20:51:09 -07:00
Enable and configure TSA (#2297)
* test * read config from variable * fix * fix * add prefix * reset some * reset version
This commit is contained in:
parent
90fd81db26
commit
41fc032bee
1 changed files with 22 additions and 4 deletions
|
@ -8,10 +8,15 @@ trigger: none
|
||||||
pr: none
|
pr: none
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
versionMajor: 11
|
- name: versionMajor
|
||||||
versionMinor: 2502
|
value: 11
|
||||||
versionBuild: $[counter(format('{0}.{1}.*', variables['versionMajor'], variables['versionMinor']), 0)]
|
- name: versionMinor
|
||||||
versionPatch: 0
|
value: 2502
|
||||||
|
- name: versionBuild
|
||||||
|
value: $[counter(format('{0}.{1}.*', variables['versionMajor'], variables['versionMinor']), 0)]
|
||||||
|
- name: versionPatch
|
||||||
|
value: 0
|
||||||
|
- group: CalculatorTSAConfig
|
||||||
|
|
||||||
name: '$(versionMajor).$(versionMinor).$(versionBuild).$(versionPatch)'
|
name: '$(versionMajor).$(versionMinor).$(versionBuild).$(versionPatch)'
|
||||||
|
|
||||||
|
@ -40,6 +45,19 @@ extends:
|
||||||
name: EssentialExperiences-windows-2022
|
name: EssentialExperiences-windows-2022
|
||||||
image: MMSWindows2022-Secure
|
image: MMSWindows2022-Secure
|
||||||
os: windows
|
os: windows
|
||||||
|
sdl:
|
||||||
|
tsa:
|
||||||
|
enabled: true
|
||||||
|
config:
|
||||||
|
codebaseName: $(TSA.CodebaseName)
|
||||||
|
notificationAliases: $(TSA.NotificationAliases)
|
||||||
|
instanceUrl: $(TSA.InstanceUrl)
|
||||||
|
projectName: $(TSA.ProjectName)
|
||||||
|
areaPath: $(TSA.AreaPath)
|
||||||
|
serviceTreeID: $(TSA.ServiceTreeID)
|
||||||
|
allTools: true
|
||||||
|
codeql:
|
||||||
|
tsaEnabled: true
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- stage: Calculator
|
- stage: Calculator
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue