E5EE Update UML to represent SDK and Global tool builds by adityapatwardhan · Pull Request #8997 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
20 changes: 9 additions & 11 deletions tools/releaseBuild/azureDevOps/diagram.puml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@startuml

folder "Linux Builds" {
folder "Linux Builds" as LinuxBuilds {
' Define the build tasks as business processes
agent "DEB" as BuildDEB
agent "RPM" as BuildRPM
Expand All @@ -21,14 +21,14 @@ folder "Windows Builds" as WinBuilds {

agent "ComponentRegistration" as BuildCG

folder "Linux Package Scanning and Upload" {
folder "Linux Package Scanning and Upload" as PkgScanUploadLinux {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Scanning or signing?

Copy link
Member
@TravisEz13 TravisEz13 Feb 27, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Scanning. Linux signing has not been automated by the lab. ☹️

agent "DEB" as UploadDEB
agent "RPM" as UploadRPM
agent "Alpine" as UploadAlpine
agent "Linux-FxDependent" as UploadLinuxFx
}

folder "Package Signing and Upload" {
folder "Package Signing and Upload" as PkgSignUpload {
agent "macOS" as SignMac

agent "Windows" as SignWin
Expand All @@ -37,10 +37,9 @@ folder "Package Signing and Upload" {

agent "Compliance" as Compliance

folder "Create & Upload FxDependent DotNet SDK" {
agent "Linux" as BuildLinuxFxSdk
agent "Windows" as BuildWinFxSdk
}

agent "Create SDK and Global Tool and Upload" as BuildNuGet


' Define finishing the build as a goal filled
control "Finish" as Finish
Expand Down Expand Up @@ -68,8 +67,8 @@ BuildWinX86 -down-> Compliance
BuildWinX64 -down-> Compliance
BuildWinFx -down-> Compliance

BuildLinuxFx -down-> BuildLinuxFxSdk
SignWin -down-> BuildWinFxSdk
PkgSignUpload -down-> BuildNuGet
LinuxBuilds -down-> BuildNuGet

' map all leafs to finish
Compliance ~~ Finish
Expand All @@ -79,8 +78,7 @@ UploadRPM ~~ Finish
UploadLinuxFx ~~ Finish
SignMac ~~ Finish
BuildCG ~~ Finish
BuildLinuxFxSdk ~~ Finish
BuildWinFxSdk ~~ Finish
BuildNuGet ~~ Finish

Start ~~ BuildDEB
Start ~~ BuildRPM
Expand Down
Loading
0