-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Add new Pipeline for Running Libs Tests with TestReadyToRun #91229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 15 commits
58471ac
d424419
cbae83d
bbcbda5
74c393d
f39ec24
e76d7b2
800bf85
4888506
f95be94
ce0beb7
084dcd2
d6145d9
7a98a59
57a1ed0
9c9845c
201c744
0e5318e
94b209d
baf03ff
bd083f9
70a5310
29bdc40
0dafa7a
0987abf
c050621
21f95ef
59af6bb
52875a7
43eee05
4666ac0
79a9028
e95e20d
e857281
d193ab5
7a3a1d5
cd94d5a
3c54a84
879e5ea
11cdb6b
19bb85f
81cb9e3
47760b3
0728170
4262460
403a5f9
797f2c0
048d35e
9939472
033508d
54088ef
7a23788
7c97aa7
f54af82
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| parameters: | ||
| archType: '' | ||
| container: '' | ||
| buildConfig: '' | ||
| crossBuild: false | ||
| dependOnEvaluatePaths: false | ||
| helixQueues: '' | ||
| osGroup: '' | ||
| osSubgroup: '' | ||
| platform: '' | ||
| pool: '' | ||
| runtimeFlavor: 'coreclr' | ||
| shouldContinueOnError: false | ||
| targetRid: '' | ||
| variables: [] | ||
|
|
||
| jobs: | ||
| - template: /eng/pipelines/common/global-build-job.yml | ||
|
||
| parameters: | ||
| buildArgs: -s clr+libs+packs | ||
| -c ${{ parameters.buildConfig }} | ||
| buildConfig: ${{ parameters.buildConfig }} | ||
|
|
||
| archType: ${{ parameters.archType }} | ||
| container: ${{ parameters.container }} | ||
| crossBuild: ${{ parameters.crossBuild }} | ||
| dependOnEvaluatePaths: ${{ parameters.dependOnEvaluatePaths }} | ||
| helixQueues: ${{ parameters.helixQueues }} | ||
| nameSuffix: TestReadyToRun_Libraries | ||
| osGroup: ${{ parameters.osGroup }} | ||
| osSubgroup: ${{ parameters.osSubgroup }} | ||
| platform: ${{ parameters.platform }} | ||
| pool: ${{ parameters.pool }} | ||
| runtimeFlavor: ${{ parameters.runtimeFlavor }} | ||
| shouldContinueOnError: ${{ parameters.shouldContinueOnError }} | ||
| targetRid: ${{ parameters.targetRid }} | ||
| timeoutInMinutes: 120 | ||
| variables: ${{ parameters.variables }} | ||
|
|
||
| extraStepsTemplate: '/eng/pipelines/libraries/run-test-ready-to-run.yml' | ||
| extraStepsParameters: | ||
| variables: ${{ parameters.variables }} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| parameters: | ||
| archType: '' | ||
| buildConfig: '' | ||
| osGroup: '' | ||
| variables: [] | ||
|
|
||
| steps: | ||
| - script: $(Build.SourcesDirectory)$(dir)build$(scriptExt) -ci | ||
| -subset libs.tests -test | ||
|
||
| -arch ${{ parameters.archType }} | ||
| -os ${{ parameters.osGroup }} | ||
| -c ${{ parameters.buildConfig }} | ||
| /p:TestReadyToRun=true | ||
| /p:RunSmokeTestsOnly=true | ||
| displayName: Build and Run Libs Tests with TestReadyToRun | ||
Uh oh!
There was an error while loading. Please reload this page.