forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwasm-debugger-tests-then-helix.yml
More file actions
48 lines (46 loc) · 1.84 KB
/
wasm-debugger-tests-then-helix.yml
File metadata and controls
48 lines (46 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
parameters:
runtimeFlavor: ''
archType: ''
buildConfig: ''
creator: ''
helixQueues: ''
osGroup: ''
targetRid: ''
testRunNamePrefixSuffix: ''
testScope: 'innerloop' # innerloop | outerloop | all
interpreter: ''
condition: always()
extraHelixArguments: ''
shouldContinueOnError: false
scenarios: ''
steps:
- script: $(_msbuildCommand) -restore
$(Build.SourcesDirectory)/src/mono/wasm/debugger/DebuggerTestSuite/DebuggerTestSuite.csproj
/p:Configuration=Debug
/p:RuntimeConfiguration=${{ parameters.buildConfig }} /p:ArchiveTests=true
/bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/Wasm.Debugger.Tests.binlog
displayName: Build Wasm.Debugger.Tests
condition: and(succeeded(), ${{ parameters.condition }})
continueOnError: ${{ eq(parameters.shouldContinueOnError, true) }}
# Chain to helix
- template: /eng/pipelines/libraries/helix.yml
parameters:
archType: ${{ parameters.archType }}
buildConfig: ${{ parameters.buildConfig }}
condition: succeeded()
creator: ${{ parameters.creator }}
extraHelixArguments: ${{ parameters.extraHelixArguments }}
helixQueues: ${{ parameters.helixQueues }}
interpreter: ${{ parameters.interpreter }}
nameSuffix: ${{ parameters.nameSuffix }}
osGroup: ${{ parameters.osGroup }}
osSubgroup: ${{ parameters.osSubgroup }}
pgoType: ${{ parameters.pgoType }}
platform: ${{ parameters.platform }}
runtimeFlavor: ${{ parameters.runtimeFlavor }}
runtimeVariant: ${{ parameters.runtimeVariant }}
scenarios: ${{ parameters.scenarios }}
shouldContinueOnError: ${{ parameters.shouldContinueOnError }}
targetRid: ${{ parameters.targetRid }}
testRunNamePrefixSuffix: ${{ parameters.testRunNamePrefixSuffix }}
testScope: ${{ parameters.testScope }}