ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 1 | .. |
| 2 | SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org> |
| 3 | SPDX-License-Identifier: Apache-2.0 |
| 4 | |
ajay | ce0380c | 2021-12-14 21:51:00 -0800 | [diff] [blame] | 5 | .. _sdcore-testing: |
| 6 | |
| 7 | Test frameworks and coverage |
| 8 | ============================ |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 9 | |
| 10 | Test Framework |
| 11 | -------------- |
| 12 | |
| 13 | NG40 |
| 14 | """" |
| 15 | |
| 16 | NG40 tool is used as RAN emulator in SD-Core testing. NG40 runs inside a VM |
| 17 | which is connected to both Aether control plane and data plane. In testing |
| 18 | scenarios that involve data plane verification, NG40 also emulates a few |
| 19 | application servers which serve as the destinations of data packets. |
| 20 | |
| 21 | A typical NG40 test case involves UE attaching, data plane verification and |
| 22 | UE detaching. During the test NG40 acts as UEs and eNBs and talks to the |
| 23 | mobile core to complete attach procedures for each UE it emulates. Then NG40 |
| 24 | verifies that data plane works for each attached UE by sending traffic between |
| 25 | UEs and application servers. Before finishing each test NG40 performs detach |
| 26 | procedures for each attached UE. |
| 27 | |
| 28 | Test cases |
| 29 | '''''''''' |
| 30 | |
| 31 | Currently the following NG40 test cases are implemented: |
| 32 | |
| 33 | 4G Tests: |
| 34 | |
| 35 | 1. ``4G_M2AS_PING_FIX`` (attach, dl ping, detach) |
| 36 | 2. ``4G_M2AS_UDP`` (attach, dl+ul udp traffic, detach) |
| 37 | 3. ``4G_M2AS_TCP`` (attach, release, service request, dl+ul tcp traffic, detach) |
| 38 | 4. ``4G_AS2M_PAGING`` (attach, release, dl udp traffic, detach) |
| 39 | 5. ``4G_M2AS_SRQ_UDP`` (attach, release, service request, dl+ul udp traffic) |
| 40 | 6. ``4G_M2CN_PS`` (combined IMSI/PTMSI attach, detach) |
| 41 | 7. ``4G_HO`` (attach, relocate and dl ping, detach) |
| 42 | 8. ``4G_SCALE`` (attach, dl ping, detach with multiple UEs) |
Ruchit Bawa | 5606dd2 | 2021-12-15 23:41:43 +0530 | [diff] [blame] | 43 | 9. ``4G_3_APPS`` (4G attach-detach with ICMP/UDP Data test with 3 applications) |
| 44 | 10. ``4G_SCALE_HO`` (attach, Handover, dl ping, detach with multiple UEs) |
| 45 | 11. ``4G_ATTACH_STRESS`` (attach-detach 200 times consecutively) |
| 46 | 12. ``4G_TAU`` (attach, Tracking Area Update, detach) |
Ruchit Bawa | cb6e886 | 2022-03-07 20:18:16 +0530 | [diff] [blame] | 47 | 13. ``4G_M2AS_UDP_TRAFFIC_CONFORMANT_TO_MAX_RATE`` (attach, UDP Data with correct qos bandwidth, detach) |
| 48 | 14. ``4G_M2AS_UDP_TRAFFIC_EXCEEDING_MAX_RATE`` (attach, UDP Data with exceeding bandwidth, detach) |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 49 | |
| 50 | 5G Tests: |
| 51 | |
| 52 | 1. ``5G_SA_Register_Deregister`` (registration, deregistration) |
| 53 | 2. ``5G_SA_Register`` (registration, session establishment, deregistration) |
| 54 | 3. ``5G_SA_Release`` (registration, session establishment, dl ping, release, deregistration) |
| 55 | 4. ``5G_SA_Activate_Release`` (registration, session establishment, dl ping, release, service request, |
| 56 | dl ping, deregistration) |
| 57 | 5. ``5G_SA_Scale`` (registration, session establishment, dl ping, deregistration for multiple UEs) |
| 58 | 6. ``5G_SA_M2AS_ICMP`` (registration, session establishment, dl ping, deregistration) |
| 59 | 7. ``5G_SA_M2AS_TCP`` (registration, session establishment, dl+ul tcp traffic, deregistration) |
| 60 | 8. ``5G_SA_M2AS_UDP`` (registration, session establishment, dl+ul udp traffic, deregistration) |
Ruchit Bawa | 5606dd2 | 2021-12-15 23:41:43 +0530 | [diff] [blame] | 61 | 9. ``5G_SA_SCALE`` (registration, session establishment, dl+ul udp traffic, deregistration with multiple UEs) |
| 62 | 10. ``5G_SA_Error_Malformed_Reg_Type`` (Error Scenario: registration with malformed registration type) |
| 63 | 11. ``5G_SA_Error_Auth_response_with_invalid_RES`` (Error Scenario: Invalid RES sent in Auth Response) |
Ruchit Bawa | cb6e886 | 2022-03-07 20:18:16 +0530 | [diff] [blame] | 64 | 12. ``5G_SA_M2AS_UDP_TRAFFIC_CONFORMANT_TO_MAX_RATE`` |
| 65 | (registration, UDP Data with correct qos bandwidth, deregistration) |
| 66 | 13. ``5G_SA_M2AS_UDP_TRAFFIC_EXCEEDING_MAX_RATE`` (registration, UDP Data with exceeding bandwidth, deregistration) |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 67 | |
| 68 | All the test cases are parameterized and can take arguments to specify number |
| 69 | of UEs, attach/detach rate, traffic type/rate etc. For example, ``4G_SCALE`` |
| 70 | test case can be configured as a mini scalability test which performs only 5 |
| 71 | UE attaches in a patchset pre-merge test, while in the nightly tests it can |
| 72 | take different arguments to run 10K UE attaches with a high attach rate. |
| 73 | |
| 74 | Test suites |
| 75 | ''''''''''' |
| 76 | |
| 77 | The test cases are atomic testing units and can be combined to build test |
| 78 | suites. The following test suites have been built so far: |
| 79 | |
| 80 | 1. ``functionality test suite`` verifies basic functionality of the |
| 81 | mobile core. 4G functionality suite runs 4G test case #1 to #8 including |
| 82 | ``4G_SCALE`` which attaches 5 UEs with 1/s attach rate. 5G functionality |
| 83 | suite runs 5G test case #1 to #8 including ``5G_SA_Scale`` which attaches |
| 84 | 100 UEs with 1/s attach rate. |
| 85 | 2. ``scalability test suite`` tests the system by scale and verifies |
| 86 | system stability. It runs ``4G_SCALE`` (or ``5G_SA_Scale``) which attaches |
| 87 | a large number of UEs with high attach rate (16k UEs with 100/s rate on 4G |
| 88 | CI pod, 1k UEs with 10/s rate on 4G staging pod, and 1k UEs with 1/s rate |
| 89 | on 5G CI pod). |
| 90 | 3. ``performance test suite`` measures performance of the control and |
| 91 | data plane. It runs ``4G_SCALE`` multiple times with different attach rates |
| 92 | to understand how the system performs under different loads. |
| 93 | |
| 94 | Robot Framework |
| 95 | """"""""""""""" |
| 96 | |
| 97 | Robot Framework was chosen to build test cases that involve interacting with |
| 98 | not only NG40 but also other parts of the system. In these scenarios Robot |
| 99 | Framework acts as a high level orchestrator which drives various components |
| 100 | of the system using component specific libraries including NG40. |
| 101 | |
| 102 | Currently the ``Integration test suite`` is implemented using Robot |
| 103 | Framework. In the integration tests Robot Framework calls the ng40 library to |
| 104 | perform normal attach/detach procedures. Meanwhile it injects failures into |
| 105 | the system (container restarts, link down etc.) by calling functions |
| 106 | implemented in the k8s library. |
| 107 | |
| 108 | The following integration tests are implemented at the moment: |
| 109 | |
Ruchit Bawa | 5606dd2 | 2021-12-15 23:41:43 +0530 | [diff] [blame] | 110 | 4G Tests: |
| 111 | |
| 112 | 1. Subscriber Attach with HSS Restart (attach, Restart HSS, detach) |
| 113 | 2. Subscriber Attach with SPGWC Restart (attach, Restart SPGWC, detach) |
Ruchit Bawa | cb6e886 | 2022-03-07 20:18:16 +0530 | [diff] [blame] | 114 | 3. Subscriber Attach with pfcp-agent Restart (attach, Restart pfcp-agent, detach) |
| 115 | 4. Subscriber Attach Detach HSS Restart Attach Detach (attach-detach, Restart HSS, attach-detach) |
| 116 | 5. Subscriber Attach Detach SPGWC Restart Attach Detach (attach-detach, Restart SPGWC, attach-detach) |
| 117 | 6. Subscriber Attach Detach MME Restart Attach Detach (attach-detach, Restart MME, attach-detach) |
| 118 | 7. Subscriber Attach Detach pfcp-agent Restart Attach Detach (attach-detach, Restart pfcp-agent, attach-detach) |
| 119 | 8. Measure Downtime for HSS Restart (Verifies if HSS restarts within acceptable time limit) |
| 120 | 9. Measure Downtime for SPGWC Restart (Verifies if SPGWC restarts within acceptable time limit) |
| 121 | 10. Measure Downtime for MME Restart (Verifies if MME restarts within acceptable time limit) |
| 122 | 11. Measure Downtime for pfcp-agent Restart (Verifies if pfcp-agent restarts within acceptable time limit) |
| 123 | 12. Context Replacement at MME (Verifies context replacement at MME after NG40 restart) |
| 124 | 13. Context Replacement at SPGWC (Verifies context replacement at SPGWC after MME restart) |
| 125 | 14. Context Replacement at UPF (Verifies context replacement at UPF after SPGWC restart) |
Ruchit Bawa | 5606dd2 | 2021-12-15 23:41:43 +0530 | [diff] [blame] | 126 | |
| 127 | 5G Tests: |
| 128 | |
| 129 | 1. ``Subscriber Register-Deregister with SMF Restart`` (registration, SMF Restart, deregistration) |
| 130 | 2. ``Subscriber Register-Deregister with AUSF Restart`` (registration, AUSF Restart, deregistration) |
| 131 | 3. ``Subscriber Register-Deregister with NRF Restart`` (registration, NRF Restart, deregistration) |
| 132 | 4. ``Subscriber Register-Deregister with NSSF Restart`` (registration, NSSF Restart, deregistration) |
| 133 | 5. ``Subscriber Register-Deregister with PCF Restart`` (registration, PCF Restart, deregistration) |
| 134 | 6. ``Subscriber Register-Deregister with UDR Restart`` (registration, UDR Restart, deregistration) |
Ruchit Bawa | cb6e886 | 2022-03-07 20:18:16 +0530 | [diff] [blame] | 135 | 7. ``Subscriber Register-Deregister with UDM Restart`` (registration, UDM Restart, deregistration) |
| 136 | 8. ``Subscriber Register-Deregister AMF Restart Subscriber Register-Deregister`` (registration |
| 137 | -deregistration, AMF Restart, registration-deregistration) |
| 138 | 9. ``Subscriber Register-Deregister SMF Restart Subscriber Register-Deregister`` (registration |
| 139 | -deregistration, SMF Restart, registration-deregistration) |
| 140 | 10. ``Subscriber Register-Deregister AUSF Restart Subscriber Register-Deregister`` (registration |
| 141 | -deregistration, AUSF Restart, registration-deregistration) |
| 142 | 11. ``Subscriber Register-Deregister NRF Restart Subscriber Register-Deregister`` (registration |
| 143 | -deregistration, NRF Restart, registration-deregistration) |
| 144 | 12. ``Subscriber Register-Deregister NSSF Restart Subscriber Register-Deregister`` (registration |
| 145 | -deregistration, NSSF Restart, registration-deregistration) |
| 146 | 13. ``Subscriber Register-Deregister PCF Restart Subscriber Register-Deregister`` (registration |
| 147 | -deregistration, PCF Restart, registration-deregistration) |
| 148 | 14. ``Subscriber Register-Deregister UDM Restart Subscriber Register-Deregister`` (registration |
| 149 | -deregistration, UDM Restart, registration-deregistration) |
| 150 | 15. ``Subscriber Register-Deregister UDR Restart Subscriber Register-Deregister`` (registration |
| 151 | -deregistration, UDR Restart, registration-deregistration) |
| 152 | 16. ``Measure Downtime for SMF Restart`` (Verifies if AMF restarts within acceptable time limit) |
| 153 | 17. ``Measure Downtime for SMF Restart`` (Verifies if SMF restarts within acceptable time limit) |
| 154 | 18. ``Measure Downtime for AUSF Restart`` (Verifies if AUSF restarts within acceptable time limit) |
| 155 | 19. ``Measure Downtime for NRF Restart`` (Verifies if NRF restarts within acceptable time limit) |
| 156 | 20. ``Measure Downtime for NSSF Restart`` (Verifies if NSSF restarts within acceptable time limit) |
| 157 | 21. ``Measure Downtime for PCF Restart`` (Verifies if PCF restarts within acceptable time limit) |
| 158 | 22. ``Measure Downtime for UDR Restart`` (Verifies if UDR restarts within acceptable time limit) |
| 159 | 23. ``Measure Downtime for UDM Restart`` (Verifies if UDM restarts within acceptable time limit) |
| 160 | 24. ``Context Replacement at AMF`` (Verifies context replacement at AMF after NG40 restart) |
| 161 | 25. ``Context Replacement at UPF`` (Verifies context replacement at UPF after SMF restart) |
| 162 | 26. ``Context Replacement at SMF`` (Verifies context replacement at SMF after AMF restart) |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 163 | |
| 164 | .. Note:: |
| 165 | More integration tests are being developed as part of Robot Framework |
| 166 | |
| 167 | Test Schedules |
| 168 | -------------- |
| 169 | |
| 170 | Nightly Tests |
| 171 | """"""""""""" |
| 172 | |
| 173 | SD-Core nightly tests are a set of jobs managed by Aether Jenkins. |
| 174 | All four test suites we mentioned above are scheduled to run nightly. |
| 175 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 176 | * ``functionality job (func)`` - runs NG40 test cases included in the |
| 177 | functionality and integration test suites and verifies all tests pass. |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 178 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 179 | * ``scalability job (scale)`` - runs the scalability test suite and reports the |
| 180 | number of successful/failed attaches, detaches and pings. |
| 181 | |
| 182 | All these jobs can be scheduled on any of the Aether PODs. By combining |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 183 | the test type and test pod the following Jenkins jobs are generated: |
| 184 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 185 | * ``ci-4g`` pod: `sdcore_ci-4g_4g_bess_func`, `sdcore_ci-4g_4g_bess_scale` |
| 186 | * ``ci-5g`` pod: `sdcore_ci-5g_5g_bess_func`, `sdcore_ci-5g_5g_bess_scale` |
| 187 | * ``qa`` pod: `sdcore_qa_4g_bess_func`, `sdcore_qa_4g_bess_scale` |
| 188 | * ``qa2`` pod: `sdcore_qa2_4g_bess_func`, `sdcore_qa2_4g_bess_scale` |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 189 | |
| 190 | Nightly Job structure |
| 191 | """"""""""""""""""""" |
| 192 | |
Ruchit Bawa | 5606dd2 | 2021-12-15 23:41:43 +0530 | [diff] [blame] | 193 | The integration tests are written using Robot Framework and are executed along |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 194 | with the functional tests. The top-level pipeline |
| 195 | (for example, `sdcore_ci-4g_4g_bess_func`) runs the following downstream jobs: |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 196 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 197 | 1. `sdcore_ci-4g_deploy` |
| 198 | 2. `sdcore_ci-4g_4g_bess_robot-test` |
| 199 | 3. `archive-artifacts_ci-4g` |
| 200 | 4. `post-results_ci-4g` |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 201 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 202 | Pre-Merge Tests |
| 203 | --------------- |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 204 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 205 | SD-Core pre-merge verification covers the following 4G/5G Core Github repos: |
| 206 | |
| 207 | * ``c3po`` |
| 208 | * ``Nucleus`` |
| 209 | * ``upf-epc`` |
| 210 | * ``spgw`` |
| 211 | |
| 212 | and 5G Core GitHub repos: |
| 213 | |
| 214 | * ``amf`` |
| 215 | * ``smf`` |
| 216 | * ``ausf`` |
| 217 | * ``nssf`` |
| 218 | * ``nrf`` |
| 219 | * ``pcf`` |
| 220 | * ``udm`` |
| 221 | * ``udr`` |
| 222 | * ``webconsole`` |
| 223 | |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 224 | SD-Core CI verifies the following: |
| 225 | |
| 226 | 1. ONF CLA verification |
| 227 | 2. License verification (FOSSA/Reuse) |
| 228 | 3. NG40 tests |
| 229 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 230 | These jobs are automatically triggered by submitted or updated pull-request to the repos |
| 231 | above. Re-trigger the checks by commenting one of the following phrases in the active pull-request: |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 232 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 233 | * ``retest this please`` - re-tests all checks |
| 234 | * ``test container`` - re-tests pre-merge jobs |
| 235 | * ``test license`` - re-tests license verification |
| 236 | * ``test fossa`` - re-tests FOSSA verification |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 237 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 238 | The NG40 verification are a set of jobs running on both OpenCORD Jenkins and |
| 239 | Aether Jenkins (private). The jobs run on OpenCORD Jenkins include: |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 240 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 241 | * `omec_c3po_container_remote <https://jenkins.opencord.org/job/omec_c3po_container_remote/>`_ (public) |
| 242 | * `omec_Nucleus_container_remote <https://jenkins.opencord.org/job/omec_Nucleus_container_remote/>`_ (public) |
| 243 | * `omec_spgw_container_remote` (private, under member-only folder) |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 244 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 245 | And the jobs run on Aether Jenkins include: |
| 246 | |
| 247 | * `c3po_premerge_ci-4g_4g_bess` |
| 248 | * `Nucleus_premerge_ci-4g_4g_bess` |
| 249 | * `upf-epc_premerge_ci-4g_4g_bess` |
| 250 | * `spgw_premerge_ci-4g_4g_bess` |
| 251 | * `amf_premerge_ci-5g_5g_bess` |
| 252 | * `smf_premerge_ci-5g_5g_bess` |
| 253 | * `ausf_premerge_ci-5g_5g_bess` |
| 254 | * `nssf_premerge_ci-5g_5g_bess` |
| 255 | * `nrf_premerge_ci-5g_5g_bess` |
| 256 | * `pcf_premerge_ci-5g_5g_bess` |
| 257 | * `udm_premerge_ci-5g_5g_bess` |
| 258 | * `udr_premerge_ci-5g_5g_bess` |
| 259 | * `webconsole_premerge_ci-5g_5g_bess` |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 260 | |
| 261 | Patchset Job structure |
| 262 | """""""""""""""""""""" |
| 263 | |
| 264 | Take ``c3po`` jobs as an example. ``c3po`` PR triggers a public job |
| 265 | `omec_c3po_container_remote |
| 266 | <https://jenkins.opencord.org/job/omec_c3po_container_remote/>`_ job running |
| 267 | on opencord Jenkins through Github webhooks, which then triggers a private job |
Ruchit Bawa | 5606dd2 | 2021-12-15 23:41:43 +0530 | [diff] [blame] | 268 | `c3po_premerge_ci-4g_4g_bess` running on Aether Jenkins using a Jenkins plugin called |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 269 | `Parameterized Remote Trigger Plugin |
| 270 | <https://www.jenkins.io/doc/pipeline/steps/Parameterized-Remote-Trigger/>`_. |
| 271 | |
| 272 | The private ``c3po`` job runs the following downstream jobs sequentially: |
| 273 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 274 | 1. `docker-publish-github_c3po` |
| 275 | 2. `sdcore_ci-4g_deploy` |
| 276 | 3. `sdcore_ci-4g_4g_bess_robot-test` |
| 277 | 4. `archive-artifacts_ci-4g` |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 278 | |
Ruchit Bawa | 5606dd2 | 2021-12-15 23:41:43 +0530 | [diff] [blame] | 279 | After all the downstream jobs are finished, the upstream job (`c3po_premerge_ci-4g_4g_bess`) |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 280 | copies artifacts including k8s/container/ng40 logs and pcap files from |
| 281 | downstream jobs and saves them as Jenkins job artifacts. |
| 282 | |
| 283 | These artifacts are also copied to and published by the public job |
| 284 | (`omec_c3po_container_remote <https://jenkins.opencord.org/job/omec_c3po_container_remote/>`_) |
| 285 | on opencord Jenkins so that they can be accessed by the OMEC community. |
| 286 | |
| 287 | Pre-merge jobs for other SD-Core repos share the same structure. |
| 288 | |
| 289 | Post-merge |
| 290 | """""""""" |
| 291 | |
| 292 | The following jobs are triggered as post-merge jobs when PRs are merged to |
| 293 | SD-Core repos: |
| 294 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 295 | * `docker-publish-github-merge_c3po` |
| 296 | * `docker-publish-github-merge_Nucleus` |
| 297 | * `docker-publish-github-merge_upf-epc` |
| 298 | * `docker-publish-github-merge_spgw` |
| 299 | * `docker-publish-github-merge_amf` |
| 300 | * `docker-publish-github-merge_smf` |
| 301 | * `docker-publish-github-merge_ausf` |
| 302 | * `docker-publish-github-merge_nssf` |
| 303 | * `docker-publish-github-merge_nrf` |
| 304 | * `docker-publish-github-merge_pcf` |
| 305 | * `docker-publish-github-merge_udm` |
| 306 | * `docker-publish-github-merge_udr` |
| 307 | * `docker-publish-github-merge_webconsole` |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 308 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 309 | Take the ``c3po`` job as an example. The post-merge job (`docker-publish-github-merge_c3po`) |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 310 | runs the following downstream jobs sequentially: |
| 311 | |
Jeremy Ronquillo | 4857c97 | 2022-03-07 10:48:38 -0800 | [diff] [blame] | 312 | * `docker-publish-github_c3po`: this is the same job as the one in pre-merge section. It checks out the latest ``c3po`` code, runs docker build and publishes the ``c3po`` docker images to `docker hub <https://hub.docker.com/u/omecproject>`__. |
ajay | f66b38e | 2021-12-09 23:44:54 -0800 | [diff] [blame] | 313 | |
| 314 | Post-merge jobs for other SD-Core repos share the same structure. |