aboutsummaryrefslogtreecommitdiff
path: root/docs/developer/uml/BuildFlow.puml
blob: 0dc146862a6c7f1ed4dca81bf4a18ec359186657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
'-------------------------------------------------------------------------------
' Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
'
' SPDX-License-Identifier: BSD-3-Clause
'
'-------------------------------------------------------------------------------

@startuml

(*) --> [cmake command] "Generating"
note right
    Generate native build files from deployment
    configuration files. External components are
    fetched and built.  Child deployments are
    generated, built and installed.
end note

If "success"
    --> [false]"Generation Errors" #Red
else
    --> [true]"Generated"
Endif

--> [make install command] "Building"
note right
    Compile and link to create build output.
end note

If "success"
    --> [false]"Build Errors" #Red
else
    --> [true]"Built"
Endif

--> "Installing"
note right
    Copy build output files to installation
    directory specified by CMAKE_INSTALL_PREFIX.
end note

If "success"
    --> [false]"Install Errors" #Red
else
    --> [true]"Installed"
Endif

--> "Deploying" #Green
note right
    Perform environment specific
    deployment steps.
end note

--> "Deployed" #Green

@enduml