mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-11 05:52:19 +02:00
24 lines
743 B
YAML
24 lines
743 B
YAML
parameters:
|
|
configuration: 'Release'
|
|
platform: ''
|
|
|
|
jobs:
|
|
- job: UI tests ${{ parameters.platform }}${{ parameters.configuration }}
|
|
displayName: Run UI tests ${{ parameters.platform }} ${{ parameters.configuration }}
|
|
dependsOn: Build${{ parameters.platform }}${{ parameters.configuration }}
|
|
pool:
|
|
demands: ImageOverride -equals SHINE-VS17-Latest
|
|
${{ if eq(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}:
|
|
name: SHINE-OSS-L
|
|
${{ if ne(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}:
|
|
name: SHINE-INT-L
|
|
timeoutInMinutes: 120
|
|
strategy:
|
|
maxParallel: 10
|
|
steps:
|
|
- checkout: self
|
|
fetchDepth: 1
|
|
submodules: true
|
|
|
|
- bash: |
|
|
echo "##[debug]Debug text" |