Skip to content
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

Enable scenario test execution in VMR build #19222

Merged
merged 55 commits into from
May 1, 2024
Merged
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
6611f11
Enable scenario test execution in VMR build
mthalman Mar 27, 2024
4790dc9
Merge branch 'main' into sb3819-scenario-tests
mthalman Apr 1, 2024
aa1f65e
Update descriptions of script options
mthalman Apr 1, 2024
81af398
Provide option to specify the test projects to run
mthalman Apr 1, 2024
b74d5fb
Use "archive" instead of "tarball"
mthalman Apr 2, 2024
5599561
Merge branch 'main' into sb3819-scenario-tests
mthalman Apr 4, 2024
28ddf27
Revert test project selection option
mthalman Apr 4, 2024
1b4412e
Delete runTests param usage for Shortstack jobs
mthalman Apr 4, 2024
f5a97a3
Move extraction of SDK to installer
mthalman Apr 10, 2024
6450dbc
Delete unnecessary local package feed
mthalman Apr 10, 2024
7e91377
Update testRunner name
mthalman Apr 10, 2024
4ad4063
Update ExtractScenarioTestsPackage target name
mthalman Apr 10, 2024
7bef2e3
Move more test execution MSBuild logic to scenario-tests
mthalman Apr 11, 2024
54ca111
Merge branch 'main' into sb3819-scenario-tests
mthalman Apr 17, 2024
2621b96
Integrate with test infra after merge from main
mthalman Apr 17, 2024
49c04fc
Remove unnecessary changes in build.ps1
mthalman Apr 18, 2024
877fc86
Clean up pipeline
mthalman Apr 18, 2024
d979155
Clean up D.B.props
mthalman Apr 18, 2024
c56edf5
Skip scenario tests for cross platform scenarios
mthalman Apr 18, 2024
3de2045
Merge branch 'main' into sb3819-scenario-tests
mthalman Apr 18, 2024
fa6b2e4
Revert refactoring of DetermineSourceBuiltSdkVersion
mthalman Apr 19, 2024
41b46b4
Move SDK extraction
mthalman Apr 19, 2024
09b93d4
Run build/test from repo-project
mthalman Apr 22, 2024
8e9b075
Delete obsolete pipeline step
mthalman Apr 22, 2024
7bb0e4a
Clarify path for scenario-tests test results for publishing
mthalman Apr 22, 2024
b7bf1bb
Consume BuildArchitecture property
mthalman Apr 22, 2024
1c9cdd7
Use proj reference for scenario-tests
mthalman Apr 23, 2024
9745f7a
Allow scenario tests to run on Windows
mthalman Apr 23, 2024
069f2a6
Set targetOS for Alpine SB legs
mthalman Apr 23, 2024
1760ffa
disable cleaning for scenario tests repo
mthalman Apr 23, 2024
ef2a81a
Merge branch 'main' into sb3819-scenario-tests
mthalman Apr 23, 2024
1e5f256
Use BuildOS instead of OS property
mthalman Apr 23, 2024
4176797
Fix disabling of build clean for scenario-tests
mthalman Apr 24, 2024
def2454
Add back missing symbol task fix
mthalman Apr 24, 2024
f7e0a03
Fix repository name for clean
mthalman Apr 24, 2024
479d957
Remove ContinueOnError to allow non-zero exit code
mthalman Apr 24, 2024
71a9649
Fixes to call scenario tests
mthalman Apr 24, 2024
c39accb
Revert property name changes for UB tests
mthalman Apr 24, 2024
0da9a75
Fix property name typo
mthalman Apr 24, 2024
003fbc4
Set _InitializeDotNetCli to support custom SDK (source build)
mthalman Apr 24, 2024
c0f5a56
Override CleanWhileBuilding in scenario-tests.proj
mthalman Apr 25, 2024
d14add1
Set fx-version
mthalman Apr 25, 2024
cb6d71a
Use local package feed to support DevVersions leg
mthalman Apr 25, 2024
d2d54f5
Revert "Use local package feed to support DevVersions leg"
mthalman Apr 25, 2024
3575d65
Revert "Set fx-version"
mthalman Apr 25, 2024
a5b08c2
Disable scenario tests for unofficial build versioning
mthalman Apr 25, 2024
9b2c707
Delete src/SourceBuild/content/test/scenario-tests.proj
ViktorHofer Apr 26, 2024
83b9e46
Apply suggestions from code review
mthalman Apr 26, 2024
497ba53
Fix binlog option to work for windows
mthalman Apr 26, 2024
75a5684
Fix typo
mthalman Apr 26, 2024
2574442
Merge branch 'main' into sb3819-scenario-tests
mthalman Apr 26, 2024
ee9f229
Publish binlogs from scenario tests
mthalman Apr 26, 2024
1d24ea4
Publish binlogs from scenario tests for windows
mthalman Apr 29, 2024
bf33d8c
Patches to disable scenario tests
mthalman Apr 30, 2024
54b299a
Merge branch 'main' into sb3819-scenario-tests
mthalman Apr 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eng/pipelines/templates/jobs/vmr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ jobs:
cd "$(sourcesPath)"
find artifacts/log/ -type f -name "*.binlog" -exec rsync -R {} -t ${targetFolder} \;
find artifacts/log/ -type f -name "*.log" -exec rsync -R {} -t ${targetFolder} \;
[ -d "artifacts/scenario-tests/" ] && find artifacts/scenario-tests/ -type f -name "*.binlog" -exec rsync -R {} -t ${targetFolder} \;
ViktorHofer marked this conversation as resolved.
Show resolved Hide resolved
find artifacts/TestResults/ -type f -name "*.binlog" -exec rsync -R {} -t ${targetFolder} \;
find artifacts/TestResults/ -type f -name "*.diff" -exec rsync -R {} -t ${targetFolder} \;
find artifacts/TestResults/ -type f -name "Updated*.txt" -exec rsync -R {} -t ${targetFolder} \;
Expand Down
Loading