Posts

Showing posts from February 28, 2019

195

Image
.mw-parser-output .nota-disambigua{clear:both;margin-bottom:.5em;border:1px solid #CCC;padding-left:4px}.mw-parser-output .nota-disambigua i{vertical-align:middle} Disambiguazione – Se stai cercando altri significati di 195, vedi 195 (disambigua) . I secolo  · II secolo  · III secolo Anni 170  · Anni 180  · Anni 190  · Anni 200  · Anni 210 191  · 192  · 193  · 194  · 195  · 196  · 197  · 198  · 199 Il 195 (CXCV in numeri romani) è un anno del II secolo. 195 negli altri calendari Calendario gregoriano 195 Ab Urbe condita 948 (CMXLVIII) Calendario armeno N.D. Calendario bengalese N.D. Calendario berbero 1145 Calendario bizantino 5703 — 5704 Calendario buddhista 739 Calendario cinese 2891 — 2892 Calendario copto N.D. Calendario ebraico 3954 — 3955 Calendario etiopico 187 — 188 Calendario induista Vikram Samvat Shaka Samvat Kali Yuga 250 — 251 117 — 118 3296 — 3297

How to run multi stages at the same time using multi parallel blocks?

Image
0 Here, I need to execute both Parallel test 1 and Parallel test 2 at the same time. When I tried to put a parallel block on top of these, it throws an error since it mentioned like this in the official site Note: that a stage must have one and only one of steps, stages, or parallel . pipeline { agent any stages { stage('Parallel Test 1') { parallel { stage('Block 1 - Stage 1') { steps { echo "Block 1 - Stage 1" build(job: 'jenkins_job_1') } } stage('Block 1 - Stage 2') { steps { echo "Block 1 - Stage 2" build(job: 'jenkins_job_2') }