-
Notifications
You must be signed in to change notification settings - Fork 158
Pipeline core #3953
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
Merged
Merged
Pipeline core #3953
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
be4089c
test1
gearama d38a6cb
glob
gearama 7e884df
quick cleanup
gearama cd2c7d7
ddasda
gearama 6d9e385
ddsa
gearama 9b7b080
envs
gearama c734103
dsds
gearama 2c7eb49
Revert "ddsa"
gearama d4365d1
wq
gearama cc0e9b4
comment out issues
gearama b55e4d5
valid test
gearama ba07b05
maybe
gearama 947f9d6
qwewqewq
gearama 6862974
lang steps
gearama e73f691
Vcpkg pre-steps in the place Daniel should've recommend they go
danieljurek cc45350
RepoOwner
danieljurek 88358f2
Correct repo owner name
danieljurek dfeda01
Remove vcpkg.yml (we don't need to write)
danieljurek 54863d3
PR trigger
gearama 0da003d
small change
gearama 2b7b7dd
Update eng/pipelines/templates/jobs/perf.yml
gearama b66c3fc
Update eng/pipelines/templates/jobs/perf.yml
gearama b0cfd35
Update sdk/core/perf.yml
gearama File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| parameters: | ||
| - name: ServiceDirectory | ||
| type: string | ||
| default: '' | ||
| - name: services | ||
| type: string | ||
| default: '' | ||
| - name: PackageVersions | ||
| type: string | ||
| default: '.*' | ||
| - name: Tests | ||
| type: string | ||
| default: '.*' | ||
| - name: Arguments | ||
| type: string | ||
| default: '.*' | ||
| - name: Iterations | ||
| type: number | ||
| default: '5' | ||
| - name: AdditionalArguments | ||
| type: string | ||
| default: '' | ||
| - name: EnvVars | ||
| type: object | ||
| default: [] | ||
|
|
||
| extends: | ||
| template: /eng/common/pipelines/templates/jobs/perf.yml | ||
| parameters: | ||
| Variables: | ||
| - template: /eng/pipelines/templates/variables/globals.yml | ||
| Language: CPP | ||
|
gearama marked this conversation as resolved.
Outdated
|
||
| ServiceDirectory: ${{ parameters.ServiceDirectory }} | ||
| Services: ${{ parameters.Services }} | ||
| PackageVersions: ${{ parameters.PackageVersions }} | ||
| Tests: ${{ parameters.Tests }} | ||
| Arguments: ${{ parameters.Arguments }} | ||
| Iterations: ${{ parameters.Iterations }} | ||
| AdditionalArguments: ${{ parameters.AdditionalArguments }} | ||
| EnvVars: ${{ parameters.EnvVars}} | ||
| InstallLanguageSteps: | ||
| - template: /eng/pipelines/templates/steps/vcpkg-clone.yml | ||
| parameters: | ||
| RepoOwner: Microsoft | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| variables: | ||
| # True if 'Enable system diagnostics' is checked when running a pipeline manually | ||
| IsDebug: $[coalesce(variables['System.Debug'], 'false')] | ||
|
|
||
| AdditionalOptions: '' | ||
|
|
||
| # Exists if needed in coalesce situations. | ||
| DefaultTestGoals: 'surefire:test' | ||
| # This will be overwritten by the test matrix, if configured. | ||
| TestGoals: $(DefaultTestGoals) | ||
|
|
||
| # This will be overwritten by the test matrix, if configured. | ||
| TestOptions: '' | ||
| # TestFromSource is one of the cache keys but isn't set until the test matrix | ||
| # has been processed. Without a default value it'll be treated as a string literal | ||
| # "$(TestFromSource)" instead of true/false. It'll be overwritten when the test | ||
| # matrix has been processed | ||
| TestFromSource: false | ||
|
|
||
| skipComponentGovernanceDetection: true | ||
| DisableDockerDetector: true | ||
| Package.EnableSBOMSigning: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| parameters: | ||
| - name: PackageVersions | ||
| displayName: PackageVersions (regex of package versions to run) | ||
| type: string | ||
| default: '1|source' | ||
|
gearama marked this conversation as resolved.
Outdated
|
||
| - name: Tests | ||
| displayName: Tests (regex of tests to run) | ||
| type: string | ||
| default: '^(extendedOptions)$' | ||
| - name: Arguments | ||
| displayName: Arguments (regex of arguments to run) | ||
| type: string | ||
| default: '.*' | ||
| - name: Iterations | ||
| displayName: Iterations (times to run each test) | ||
| type: number | ||
| default: '5' | ||
| - name: AdditionalArguments | ||
| displayName: AdditionalArguments (passed to PerfAutomation) | ||
| type: string | ||
| default: ' ' | ||
|
|
||
| extends: | ||
| template: /eng/pipelines/templates/jobs/perf.yml | ||
| parameters: | ||
| ServiceDirectory: core | ||
| Services: "^core$" | ||
| PackageVersions: ${{ parameters.PackageVersions }} | ||
| Tests: ${{ parameters.Tests }} | ||
| Arguments: ${{ parameters.Arguments }} | ||
| Iterations: ${{ parameters.Iterations }} | ||
| AdditionalArguments: ${{ parameters.AdditionalArguments }} | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.