NingSun | fd33dba | 2018-03-08 16:11:39 -0800 | [diff] [blame] | 1 | --- |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 2 | #################### |
| 3 | # COMMON FUNCTIONS # |
| 4 | #################### |
| 5 | |
Anil Belur | 7b3203a | 2023-04-14 21:54:49 +1000 | [diff] [blame] | 6 | - _c_job_common: &c_job_common |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 7 | name: c-job-common |
| 8 | |
| 9 | ###################### |
| 10 | # Default parameters # |
| 11 | ###################### |
| 12 | |
| 13 | branch: master |
| 14 | submodule-recursive: true |
Jessica Wagantall | 57ed49e | 2019-05-14 18:57:35 -0700 | [diff] [blame] | 15 | submodule-disable: false |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 16 | submodule-timeout: 10 |
| 17 | |
| 18 | ##################### |
| 19 | # Job Configuration # |
| 20 | ##################### |
| 21 | |
| 22 | project-type: freestyle |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 23 | node: "{build-node}" |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 24 | disabled: false |
| 25 | |
| 26 | properties: |
| 27 | - infra-properties: |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 28 | build-days-to-keep: "{build-days-to-keep}" |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 29 | |
| 30 | parameters: |
| 31 | - lf-infra-parameters: |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 32 | project: "{project}" |
| 33 | branch: "{branch}" |
| 34 | stream: "{stream}" |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 35 | |
| 36 | scm: |
| 37 | - lf-infra-gerrit-scm: |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 38 | jenkins-ssh-credential: "{jenkins-ssh-credential}" |
| 39 | git-url: "$GIT_URL/$PROJECT" |
| 40 | refspec: "$GERRIT_REFSPEC" |
| 41 | branch: "$GERRIT_BRANCH" |
| 42 | submodule-recursive: "{submodule-recursive}" |
| 43 | submodule-disable: "{submodule-disable}" |
| 44 | submodule-timeout: "{submodule-timeout}" |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 45 | choosing-strategy: default |
| 46 | |
| 47 | wrappers: |
| 48 | - lf-infra-wrappers: |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 49 | build-timeout: "{build-timeout}" |
| 50 | jenkins-ssh-credential: "{jenkins-ssh-credential}" |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 51 | |
| 52 | publishers: |
| 53 | - lf-infra-publish |
| 54 | |
NingSun | fd33dba | 2018-03-08 16:11:39 -0800 | [diff] [blame] | 55 | - job-template: |
| 56 | # |
| 57 | # job template for build C/C++ project |
| 58 | # |
| 59 | # Required Variables: |
| 60 | # script: build script to execute |
| 61 | # |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 62 | name: "{project-name}-{stream}-verify-c" |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 63 | id: gerrit-verify-c |
| 64 | <<: *c_job_common |
NingSun | fd33dba | 2018-03-08 16:11:39 -0800 | [diff] [blame] | 65 | |
| 66 | triggers: |
| 67 | - gerrit-trigger-patch-submitted: |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 68 | server: "{server-name}" |
| 69 | project: "{project}" |
| 70 | branch: "{branch}" |
| 71 | files: "**" |
NingSun | fd33dba | 2018-03-08 16:11:39 -0800 | [diff] [blame] | 72 | |
| 73 | builders: |
Jessica Wagantall | 05ae7da | 2018-10-22 17:32:33 -0700 | [diff] [blame] | 74 | - lf-infra-pre-build |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 75 | - shell: "{script}" |
NingSun | fd33dba | 2018-03-08 16:11:39 -0800 | [diff] [blame] | 76 | |
Manjunath Ranganathaiah | 9d6c823 | 2018-08-15 11:42:10 -0700 | [diff] [blame] | 77 | - job-template: |
| 78 | # Job template for building & pushing docker images |
| 79 | # |
| 80 | # The purpose of this job template is to run: |
| 81 | # 1. login to the docker registry |
| 82 | # 2. run a specified shell builder |
| 83 | # |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 84 | name: "{project-name}-{stream}-docker-c-shell-daily" |
Jessica Wagantall | 9df5542 | 2019-04-19 17:09:34 -0700 | [diff] [blame] | 85 | id: gerrit-docker-c-shell-daily |
| 86 | <<: *c_job_common |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 87 | node: "ubuntu1804-docker-8c-8g" |
Manjunath Ranganathaiah | 9d6c823 | 2018-08-15 11:42:10 -0700 | [diff] [blame] | 88 | |
| 89 | triggers: |
| 90 | # 12 AM UTC |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 91 | - timed: "@daily" |
Manjunath Ranganathaiah | 9d6c823 | 2018-08-15 11:42:10 -0700 | [diff] [blame] | 92 | - gerrit-trigger-release-manually: |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 93 | server: "{server-name}" |
| 94 | project: "{project}" |
| 95 | branch: "{branch}" |
Manjunath Ranganathaiah | 9d6c823 | 2018-08-15 11:42:10 -0700 | [diff] [blame] | 96 | |
| 97 | builders: |
Jessica Wagantall | 05ae7da | 2018-10-22 17:32:33 -0700 | [diff] [blame] | 98 | - lf-infra-pre-build |
Manjunath Ranganathaiah | 9d6c823 | 2018-08-15 11:42:10 -0700 | [diff] [blame] | 99 | - provide-maven-settings: |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 100 | global-settings-file: "global-settings" |
| 101 | settings-file: "{mvn-settings}" |
Manjunath Ranganathaiah | 9d6c823 | 2018-08-15 11:42:10 -0700 | [diff] [blame] | 102 | - docker-login |
Andrew Grimberg | c1f3caf | 2023-05-03 09:25:07 -0700 | [diff] [blame] | 103 | - shell: "{script}" |