forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add runtimelab.yml for dotnet/runtimelab experiments CI and build inf…
…rastructure (dotnet#39749) * Add runtimelab.yml for dotnet/runtimelab experiments CI and build infrastructure * rename one of the ymls based on feedback
- Loading branch information
Showing
11 changed files
with
337 additions
and
69 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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,55 @@ | ||
# Steps used to prepare the Artifacts Staging Directory with required files for | ||
# executing libraries tests as well as shared framework assets | ||
parameters: | ||
isOfficialBuild: '' | ||
|
||
steps: | ||
- ${{ if ne(parameters.isOfficialBuild, true) }}: | ||
- task: CopyFiles@2 | ||
displayName: Prepare testhost folder to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/testhost | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/testhost | ||
|
||
- task: CopyFiles@2 | ||
displayName: Prepare runtime folder to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/runtime | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/runtime | ||
|
||
- task: CopyFiles@2 | ||
displayName: Prepare ref folder to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/ref | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/ref | ||
|
||
- task: CopyFiles@2 | ||
displayName: Prepare shared framework ref assemblies to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/ref/microsoft.netcore.app | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/ref/microsoft.netcore.app | ||
|
||
- task: CopyFiles@2 | ||
displayName: Prepare docs folder to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/docs | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/docs | ||
|
||
- task: CopyFiles@2 | ||
displayName: Prepare shared framework runtime folder to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/pkg | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/pkg | ||
|
||
- task: CopyFiles@2 | ||
displayName: Prepare native folder to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/native | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/bin/native | ||
|
||
- task: CopyFiles@2 | ||
displayName: Prepare artifacts packages folder to publish | ||
inputs: | ||
sourceFolder: $(Build.SourcesDirectory)/artifacts/packages | ||
targetFolder: $(Build.ArtifactStagingDirectory)/artifacts/packages | ||
condition: and(succeeded(), eq(variables['_librariesBuildProducedPackages'], true)) |
This file contains 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.