Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 1 | - job: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 2 | name: tf-a-main |
Leonardo Sandoval | d1b6b5a | 2021-09-13 12:06:26 -0500 | [diff] [blame] | 3 | node: docker-amd64-tf-a-bionic |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 4 | project-type: multijob |
| 5 | concurrent: true |
| 6 | disabled: false |
| 7 | description: Main CI job for Trusted Firmware. |
| 8 | properties: |
| 9 | - throttle: |
| 10 | option: project |
| 11 | enabled: true |
| 12 | max-total: 5 |
| 13 | - build-discarder: |
Leonardo Sandoval | a4feb55 | 2021-03-02 12:10:21 -0600 | [diff] [blame] | 14 | days-to-keep: 14 |
| 15 | num-to-keep: 60 |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 16 | - authorization: |
Leonardo Sandoval | ebca882 | 2021-01-25 18:20:04 -0600 | [diff] [blame] | 17 | !include: authorization.yaml.inc |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 18 | parameters: |
| 19 | - string: |
| 20 | name: TF_GERRIT_PROJECT |
| 21 | default: 'TF-A/trusted-firmware-a' |
| 22 | - string: |
| 23 | name: TF_GERRIT_BRANCH |
Leonardo Sandoval | 3da340d | 2021-02-09 14:53:30 -0600 | [diff] [blame] | 24 | default: 'refs/heads/integration' |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 25 | - string: |
| 26 | name: TF_GERRIT_REFSPEC |
Leonardo Sandoval | 3da340d | 2021-02-09 14:53:30 -0600 | [diff] [blame] | 27 | default: '+refs/heads/integration:refs/remotes/origin/integration' |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 28 | - string: |
| 29 | name: TFTF_GERRIT_PROJECT |
| 30 | default: 'TF-A/tf-a-tests' |
| 31 | - string: |
| 32 | name: TFTF_GERRIT_BRANCH |
Leonardo Sandoval | 3da340d | 2021-02-09 14:53:30 -0600 | [diff] [blame] | 33 | default: 'refs/heads/master' |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 34 | - string: |
| 35 | name: TFTF_GERRIT_REFSPEC |
Leonardo Sandoval | 3da340d | 2021-02-09 14:53:30 -0600 | [diff] [blame] | 36 | default: '+refs/heads/master:refs/remotes/origin/master' |
Leonardo Sandoval | d1b6b5a | 2021-09-13 12:06:26 -0500 | [diff] [blame] | 37 | - string: |
Zelalem Aweke | e8801df | 2021-10-25 13:41:44 -0500 | [diff] [blame] | 38 | name: CI_REFSPEC |
| 39 | default: '+refs/heads/master:refs/remotes/origin/master' |
| 40 | - string: |
Leonardo Sandoval | d1b6b5a | 2021-09-13 12:06:26 -0500 | [diff] [blame] | 41 | name: SHARE_FOLDER |
| 42 | default: '/srv/shared/${JOB_NAME}/${BUILD_NUMBER}' |
| 43 | description: 'Folder containing shared repositories for downstream pipeline jobs' |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 44 | wrappers: |
| 45 | - credentials-binding: |
| 46 | - ssh-user-private-key: |
| 47 | credential-id: TFA_CI_BOT_USER_SSH_KEY |
| 48 | key-file-variable: CI_BOT_KEY |
| 49 | username-variable: CI_BOT_USERNAME |
| 50 | passphrase-variable: '' |
| 51 | - workspace-cleanup |
| 52 | - timestamps |
| 53 | builders: |
Leonardo Sandoval | d1b6b5a | 2021-09-13 12:06:26 -0500 | [diff] [blame] | 54 | - shell: |
| 55 | !include-raw: scripts/clone.sh |
Fathi Boudra | 9c8a945 | 2020-12-08 22:16:57 +0100 | [diff] [blame] | 56 | - shell: | |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 57 | #!/bin/bash |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 58 | set -e |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 59 | cat << EOF > tf-a-env.param |
| 60 | GERRIT_PROJECT=${TF_GERRIT_PROJECT} |
| 61 | GERRIT_BRANCH=${TF_GERRIT_BRANCH} |
| 62 | GERRIT_REFSPEC=${TF_GERRIT_REFSPEC} |
Milosz Wasilewski | 1043858 | 2020-12-03 11:36:21 +0000 | [diff] [blame] | 63 | QA_SERVER_PROJECT=${JOB_NAME} |
| 64 | QA_SERVER_VERSION=${BUILD_NUMBER} |
Leonardo Sandoval | d1b6b5a | 2021-09-13 12:06:26 -0500 | [diff] [blame] | 65 | SHARE_FOLDER=${SHARE_FOLDER} |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 66 | EOF |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 67 | cat << EOF > tf-a-tests-env.param |
| 68 | GERRIT_PROJECT=${TFTF_GERRIT_PROJECT} |
| 69 | GERRIT_BRANCH=${TFTF_GERRIT_BRANCH} |
| 70 | GERRIT_REFSPEC=${TFTF_GERRIT_REFSPEC} |
Milosz Wasilewski | 1043858 | 2020-12-03 11:36:21 +0000 | [diff] [blame] | 71 | QA_SERVER_PROJECT=${JOB_NAME} |
| 72 | QA_SERVER_VERSION=${BUILD_NUMBER} |
Leonardo Sandoval | d1b6b5a | 2021-09-13 12:06:26 -0500 | [diff] [blame] | 73 | SHARE_FOLDER=${SHARE_FOLDER} |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 74 | EOF |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 75 | - multijob: |
| 76 | name: Run static checks on the code |
| 77 | condition: COMPLETED |
| 78 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 79 | - name: tf-a-static-checks |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 80 | current-parameters: true |
| 81 | kill-phase-on: NEVER |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 82 | property-file: tf-a-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 83 | - multijob: |
| 84 | name: Build Trusted Firmware |
| 85 | condition: COMPLETED |
| 86 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 87 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 88 | current-parameters: true |
| 89 | kill-phase-on: NEVER |
| 90 | predefined-parameters: | |
| 91 | TEST_GROUPS=tf-l1-build-fvp tf-l2-build-fvp |
| 92 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 93 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 94 | current-parameters: true |
| 95 | kill-phase-on: NEVER |
| 96 | predefined-parameters: TEST_GROUPS=tf-l1-build-juno tf-l2-build-juno |
| 97 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 98 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 99 | current-parameters: true |
| 100 | kill-phase-on: NEVER |
| 101 | predefined-parameters: TEST_GROUPS=tf-l1-build-plat |
| 102 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 103 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 104 | current-parameters: true |
| 105 | kill-phase-on: NEVER |
| 106 | predefined-parameters: TEST_GROUPS=tf-l1-build-clang |
| 107 | property-file: tf-a-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 108 | - multijob: |
Manish Pandey | b5fcc44 | 2022-06-20 14:08:45 +0100 | [diff] [blame] | 109 | name: TFTF Tests for FVP |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 110 | condition: COMPLETED |
| 111 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 112 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 113 | current-parameters: true |
| 114 | kill-phase-on: NEVER |
| 115 | predefined-parameters: TEST_GROUPS=tftf-l2-fwu |
| 116 | property-file: tf-a-tests-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 117 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 118 | current-parameters: true |
| 119 | kill-phase-on: NEVER |
Manish Pandey | b5fcc44 | 2022-06-20 14:08:45 +0100 | [diff] [blame] | 120 | predefined-parameters: TEST_GROUPS=tftf-l1-fvp tftf-l2-fvp-auxiliary |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 121 | property-file: tf-a-tests-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 122 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 123 | current-parameters: true |
| 124 | kill-phase-on: NEVER |
| 125 | predefined-parameters: TEST_GROUPS=tftf-l2-fvp tftf-l2-fvp-dynamiq |
| 126 | property-file: tf-a-tests-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 127 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 128 | current-parameters: true |
| 129 | kill-phase-on: NEVER |
| 130 | predefined-parameters: TEST_GROUPS=tftf-l2-extensive-tests-fvp |
| 131 | property-file: tf-a-tests-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 132 | - multijob: |
| 133 | name: Boot up to the Linux shell prompt |
| 134 | condition: COMPLETED |
| 135 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 136 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 137 | current-parameters: true |
| 138 | kill-phase-on: NEVER |
| 139 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-foundation |
| 140 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 141 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 142 | current-parameters: true |
| 143 | kill-phase-on: NEVER |
| 144 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-aarch32 |
| 145 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 146 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 147 | current-parameters: true |
| 148 | kill-phase-on: NEVER |
| 149 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-rootfs |
| 150 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 151 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 152 | current-parameters: true |
| 153 | kill-phase-on: NEVER |
Leonardo Sandoval | 67ac6f1 | 2020-12-10 11:02:26 -0600 | [diff] [blame] | 154 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-spm-mm |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 155 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 156 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 0e0ee89 | 2021-02-16 10:39:51 -0600 | [diff] [blame] | 157 | current-parameters: true |
| 158 | kill-phase-on: NEVER |
| 159 | predefined-parameters: TEST_GROUPS=spm-l2-boot-tests |
| 160 | property-file: tf-a-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 161 | - multijob: |
| 162 | name: Boot up to the Linux shell prompt - Part 2 |
| 163 | condition: COMPLETED |
| 164 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 165 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 166 | current-parameters: true |
| 167 | kill-phase-on: NEVER |
| 168 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-misc |
| 169 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 170 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 171 | current-parameters: true |
| 172 | kill-phase-on: NEVER |
| 173 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-latest |
| 174 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 175 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 176 | current-parameters: true |
| 177 | kill-phase-on: NEVER |
| 178 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-cortex |
| 179 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 180 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 181 | current-parameters: true |
| 182 | kill-phase-on: NEVER |
| 183 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-gicv2 |
| 184 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 185 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 186 | current-parameters: true |
| 187 | kill-phase-on: NEVER |
| 188 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-bl2_el3 |
| 189 | property-file: tf-a-env.param |
Harrison Mutai | 521b3c8 | 2022-11-08 10:18:15 +0000 | [diff] [blame] | 190 | - name: tf-a-ci-gateway |
| 191 | current-parameters: true |
| 192 | kill-phase-on: NEVER |
| 193 | predefined-parameters: TEST_GROUPS=qemu-boot-tests |
| 194 | property-file: tf-a-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 195 | - multijob: |
Manish Pandey | b5fcc44 | 2022-06-20 14:08:45 +0100 | [diff] [blame] | 196 | name: Juno Boot Tests |
| 197 | condition: COMPLETED |
| 198 | projects: |
| 199 | - name: tf-a-ci-gateway |
| 200 | current-parameters: true |
| 201 | kill-phase-on: NEVER |
| 202 | predefined-parameters: TEST_GROUPS=tf-l1-boot-tests-juno |
| 203 | property-file: tf-a-env.param |
| 204 | - name: tf-a-ci-gateway |
| 205 | current-parameters: true |
| 206 | kill-phase-on: NEVER |
| 207 | predefined-parameters: TEST_GROUPS=tf-l2-boot-tests-juno |
| 208 | property-file: tf-a-env.param |
| 209 | - name: tf-a-ci-gateway |
| 210 | current-parameters: true |
| 211 | kill-phase-on: NEVER |
| 212 | predefined-parameters: TEST_GROUPS=tftf-l1-juno |
| 213 | property-file: tf-a-env.param |
| 214 | - multijob: |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 215 | name: Miscellaneous tests |
| 216 | condition: COMPLETED |
| 217 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 218 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 219 | current-parameters: true |
| 220 | kill-phase-on: NEVER |
| 221 | predefined-parameters: TEST_GROUPS=tf-l3-boot-tests-css |
| 222 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 223 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 224 | current-parameters: true |
| 225 | kill-phase-on: NEVER |
Leonardo Sandoval | 67ac6f1 | 2020-12-10 11:02:26 -0600 | [diff] [blame] | 226 | predefined-parameters: TEST_GROUPS=tf-l3-boot-tests-spm-mm |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 227 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 228 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 229 | current-parameters: true |
| 230 | kill-phase-on: NEVER |
| 231 | predefined-parameters: TEST_GROUPS=tf-l3-boot-tests-ras |
| 232 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 233 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 234 | current-parameters: true |
| 235 | kill-phase-on: NEVER |
| 236 | predefined-parameters: TEST_GROUPS=tf-l3-boot-tests-misc |
| 237 | property-file: tf-a-env.param |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 238 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 0e0ee89 | 2021-02-16 10:39:51 -0600 | [diff] [blame] | 239 | current-parameters: true |
| 240 | kill-phase-on: NEVER |
| 241 | predefined-parameters: TEST_GROUPS=spm-l3-boot-tests |
| 242 | property-file: tf-a-env.param |
Arthur She | e4fa023 | 2022-11-03 21:05:20 -0700 | [diff] [blame] | 243 | - name: tf-a-ci-gateway |
| 244 | current-parameters: true |
| 245 | kill-phase-on: NEVER |
| 246 | predefined-parameters: TEST_GROUPS=tf-l1-boot-tests-plat |
| 247 | property-file: tf-a-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 248 | - multijob: |
| 249 | name: Code coverage |
| 250 | condition: COMPLETED |
| 251 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 252 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 253 | current-parameters: true |
| 254 | kill-phase-on: NEVER |
| 255 | predefined-parameters: TEST_GROUPS=tf-l3-code-coverage |
| 256 | property-file: tf-a-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 257 | - multijob: |
| 258 | name: Run doc build check |
| 259 | condition: COMPLETED |
| 260 | projects: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 261 | - name: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 262 | current-parameters: true |
| 263 | kill-phase-on: NEVER |
| 264 | predefined-parameters: TEST_GROUPS=tf-l1-check-docs |
| 265 | property-file: tf-a-env.param |
Harrison Mutai | ee250c7 | 2022-08-05 16:28:27 +0100 | [diff] [blame] | 266 | - multijob: |
| 267 | name: Generate visualizations |
| 268 | condition: COMPLETED |
| 269 | projects: |
Chris Kay | 9bd277b | 2022-09-07 10:12:42 +0100 | [diff] [blame] | 270 | # - name: tf-a-sloc-visualization |
| 271 | # current-parameters: true |
| 272 | # kill-phase-on: NEVER |
| 273 | # property-file: tf-a-env.param |
| 274 | # - name: tf-a-test-category-visualization |
| 275 | # current-parameters: true |
| 276 | # kill-phase-on: NEVER |
| 277 | # property-file: tf-a-env.param |
Harrison Mutai | ee250c7 | 2022-08-05 16:28:27 +0100 | [diff] [blame] | 278 | - name: tf-a-test-result-visualization |
| 279 | current-parameters: true |
| 280 | kill-phase-on: NEVER |
| 281 | predefined-parameters: TARGET_BUILD=${JOB_NAME}/${BUILD_NUMBER} |
| 282 | property-file: tf-a-env.param |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 283 | # Run the unstable TF-A Tests at the end but do not let their results |
| 284 | # participate in the job's success/failure. |
| 285 | - trigger-builds: |
Leonardo Sandoval | ffaee98 | 2021-11-11 10:27:57 -0600 | [diff] [blame] | 286 | - project: tf-a-ci-gateway |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 287 | current-parameters: True |
| 288 | property-file: tf-a-tests-env.param |
| 289 | property-file-fail-on-missing: True |
| 290 | predefined-parameters: TEST_GROUPS=tftf-unstable |
| 291 | block: True |
| 292 | block-thresholds: |
| 293 | build-step-failure-threshold: never |
| 294 | unstable-threshold: never |
| 295 | failure-threshold: never |
Leonardo Sandoval | 2902d2f | 2020-11-25 12:32:31 -0600 | [diff] [blame] | 296 | # If all tests passed, catch up the master branch with integration |
| 297 | - conditional-step: |
| 298 | condition-kind: current-status |
| 299 | condition-best: SUCCESS |
| 300 | condition-worst: SUCCESS |
| 301 | steps: |
Paul Sokolovsky | a0aceed | 2022-01-21 19:27:55 +0300 | [diff] [blame] | 302 | - shell: bash "${WORKSPACE}/tf-a-ci-scripts/script/scratch_scripts/fast-forward-master.sh" |