Set Node to Meridio jobs
[infra/cicd.git] / jjb / nsm / meridio-periodic.yaml
1 ---
2 # ============LICENSE_START=======================================================
3 #  Copyright (C) 2021 Nordix Foundation.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 # SPDX-License-Identifier: Apache-2.0
18 # ============LICENSE_END=========================================================
19
20 - project:
21     name: 'meridio-periodic'
22
23     project: 'meridio-periodic'
24
25     # NOTE (fdegir): auth-id is taken from Jenkins Global Configuration
26     # by clicking Auth ID button for the desired GitHub Server API URL
27     # Please ensure you are looking at GitHub Pull Request Builder part
28     # of global configuration and not to GitHub Server configuration
29     ghprb-auth-id: 'cdfd2452-a9e2-41a3-8ee6-9058512b4aff'
30
31     jobs:
32       - 'meridio-periodic'
33
34 - job-template:
35     name: 'meridio-periodic'
36     project-type: pipeline
37     disabled: '{obj:disabled}'
38
39     concurrent: true
40
41     node: nordix-nsm-build-ubuntu1804
42
43     properties:
44       - github:
45           url: https://github.com/Nordix/Meridio
46
47     parameters:
48       - string:
49           name: GITHUB_ORGANIZATION
50           default: 'Nordix'
51           description: JJB configured parameter to identify GitHub Organization
52       - string:
53           name: PROJECT
54           default: 'Meridio'
55           description: JJB configured PROJECT parameter to identify a Nordix GitHub project
56       - string:
57           name: IMAGE_NAMES
58           default: 'load-balancer proxy tapa ipam nsp ctraffic frontend'
59           description: Images to compile
60       - string:
61           name: IMAGE_VERSION
62           default: 'latest'
63           description: Version of the images
64       - string:
65           name: E2E_ENABLED
66           default: "false"
67           description: Is E2E Tests enabled?
68       - string:
69           name: GIT_PROJECT
70           default: "https://github.com/Nordix/Meridio.git"
71           description: Git URL of the project
72       - string:
73           name: CURRENT_BRANCH
74           default: "master"
75           description: Current Git branch
76       - string:
77           name: DEFAULT_BRANCH
78           default: "master"
79           description: default branch
80       - string:
81           name: BUILD_STEPS
82           default: "build tag push"
83           description: Steps to run during build
84       - string:
85           name: IMAGE_REGISTRY
86           default: 'registry.nordix.org/cloud-native/meridio'
87           description: Meridio image regsitry
88
89     triggers:
90       - pollscm:
91           cron: '@midnight'
92
93     dsl: 
94       !include-raw-escape: Jenkinsfile
95
96 # vim: set ts=2 sw=2 expandtab: