Julian Hall | e76ade8 | 2020-11-25 03:07:21 +0100 | [diff] [blame] | 1 | '------------------------------------------------------------------------------- |
| 2 | ' Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. |
| 3 | ' |
| 4 | ' SPDX-License-Identifier: BSD-3-Clause |
| 5 | ' |
| 6 | '------------------------------------------------------------------------------- |
| 7 | |
| 8 | @startuml |
| 9 | |
| 10 | (*) --> [cmake command] "Generating" |
| 11 | note right |
| 12 | Generate native build files from deployment |
| 13 | configuration files. External components are |
| 14 | fetched and built. Child deployments are |
| 15 | generated, built and installed. |
| 16 | end note |
| 17 | |
| 18 | If "success" |
| 19 | --> [false]"Generation Errors" #Red |
| 20 | else |
| 21 | --> [true]"Generated" |
| 22 | Endif |
| 23 | |
| 24 | --> [make install command] "Building" |
| 25 | note right |
| 26 | Compile and link to create build output. |
| 27 | end note |
| 28 | |
| 29 | If "success" |
| 30 | --> [false]"Build Errors" #Red |
| 31 | else |
| 32 | --> [true]"Built" |
| 33 | Endif |
| 34 | |
| 35 | --> "Installing" |
| 36 | note right |
| 37 | Copy build output files to installation |
| 38 | directory specified by CMAKE_INSTALL_PREFIX. |
| 39 | end note |
| 40 | |
| 41 | If "success" |
| 42 | --> [false]"Install Errors" #Red |
| 43 | else |
| 44 | --> [true]"Installed" |
| 45 | Endif |
| 46 | |
| 47 | --> "Deploying" #Green |
| 48 | note right |
| 49 | Perform environment specific |
| 50 | deployment steps. |
| 51 | end note |
| 52 | |
| 53 | --> "Deployed" #Green |
| 54 | |
| 55 | @enduml |