-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Add Windows ARM64 CI #19040
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
Add Windows ARM64 CI #19040
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
90f359f
Add CI for win-arm64
adityapatwardhan 2e18541
Install Powershell
adityapatwardhan aaeeafe
Fix condition
adityapatwardhan eb65d14
Add Sync-PStags
adityapatwardhan 8f4bac9
Add missing switch
adityapatwardhan b54a899
Add explicit checkout
adityapatwardhan 6181cd1
Make test stages use the correct image
adityapatwardhan 494b607
Install pscore
adityapatwardhan 7e127ea
Fix typo
adityapatwardhan 4f0c9ea
Add logging
adityapatwardhan e6e34ad
fix path
adityapatwardhan 089212c
Fix bootstrap
adityapatwardhan fbc67e2
fix unelevated tests
TravisEz13 24badb1
update image name
TravisEz13 87459f5
update build image name
TravisEz13 a0ec3eb
Add note
TravisEz13 2fdabeb
make step name more descriptive
TravisEz13 f952733
fix test failures
TravisEz13 0e7095a
fix test failures
TravisEz13 ad65b7a
fix test issues
TravisEz13 679b896
fix test issues
TravisEz13 0b1cba6
fix test issue
TravisEz13 6735561
Fix test issues
TravisEz13 0398853
Fix test issue
TravisEz13 32290f8
fix test issues
TravisEz13 871da5a
fix issues again
TravisEz13 2554ed8
Update .vsts-ci/templates/ci-build.yml
TravisEz13 e668afa
fix a typo
TravisEz13 79e5d98
Update .vsts-ci/templates/ci-build.yml
TravisEz13 5130c31
Add common function to test for windows arm64
TravisEz13 4f5da10
Update because string where items need investigation
TravisEz13 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
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
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,95 @@ | ||
| name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr) | ||
| trigger: | ||
| # Batch merge builds together while a merge build is running | ||
| batch: true | ||
| branches: | ||
| include: | ||
| - master | ||
| - release* | ||
| - feature* | ||
| paths: | ||
| include: | ||
| - '*' | ||
| exclude: | ||
| - .vsts-ci/misc-analysis.yml | ||
| - .github/ISSUE_TEMPLATE/* | ||
| - .dependabot/config.yml | ||
| - test/perf/* | ||
| pr: | ||
| branches: | ||
| include: | ||
| - master | ||
| - release* | ||
| - feature* | ||
| paths: | ||
| include: | ||
| - '*' | ||
| exclude: | ||
| - .dependabot/config.yml | ||
| - .github/ISSUE_TEMPLATE/* | ||
| - .vsts-ci/misc-analysis.yml | ||
| - tools/cgmanifest.json | ||
| - LICENSE.txt | ||
| - test/common/markdown/* | ||
| - test/perf/* | ||
| - tools/packaging/* | ||
| - tools/releaseBuild/* | ||
| - tools/releaseBuild/azureDevOps/templates/* | ||
| - README.md | ||
| - .spelling | ||
|
|
||
| variables: | ||
| - name: GIT_CONFIG_PARAMETERS | ||
| value: "'core.autocrlf=false'" | ||
| - name: DOTNET_CLI_TELEMETRY_OPTOUT | ||
| value: 1 | ||
| - name: POWERSHELL_TELEMETRY_OPTOUT | ||
| value: 1 | ||
| # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds | ||
| - name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE | ||
| value: 1 | ||
| - name: __SuppressAnsiEscapeSequences | ||
| value: 1 | ||
| - group: PoolNames | ||
|
|
||
| resources: | ||
| - repo: self | ||
| clean: true | ||
|
|
||
| stages: | ||
| - stage: BuildWin | ||
| displayName: Build for Windows | ||
| jobs: | ||
| - template: templates/ci-build.yml | ||
| parameters: | ||
| pool: $(armPool) | ||
| PoolType: 1esHosted | ||
|
|
||
| - stage: TestWin | ||
| displayName: Test for Windows | ||
| jobs: | ||
| - template: templates/windows-test.yml | ||
| parameters: | ||
| purpose: UnelevatedPesterTests | ||
| tagSet: CI | ||
| pool: $(armPool) | ||
|
|
||
| - template: templates/windows-test.yml | ||
| parameters: | ||
| purpose: ElevatedPesterTests | ||
| tagSet: CI | ||
| pool: $(armPool) | ||
|
|
||
| - template: templates/windows-test.yml | ||
| parameters: | ||
| purpose: UnelevatedPesterTests | ||
| tagSet: Others | ||
| pool: $(armPool) | ||
|
|
||
| - template: templates/windows-test.yml | ||
| parameters: | ||
| purpose: ElevatedPesterTests | ||
| tagSet: Others | ||
| pool: $(armPool) | ||
|
|
||
| - template: templates/verify-xunit.yml |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.