blob: 0adfae7a9cc2cf85650b63a8f2af8c76ff188308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
---
- job-template:
# Job template for verifying Vagrantfiles
#
# The purpose of this job template is to run:
# vagrant validate
name: '{project-name}-{stream}-verify-vagrantfile'
project-type: freestyle
description: 'Job intended for validating vagrantfiles'
node: ubuntu1604-builder-2c-1g
parameters:
- lf-infra-parameters:
project: '{project}'
stream: '{stream}'
branch: '{branch}'
properties:
- infra-properties:
build-days-to-keep: '{build-days-to-keep}'
scm:
- gerrit-trigger-scm:
refspec: '$GERRIT_REFSPEC'
choosing-strategy: 'gerrit'
submodule-recursive: '{submodule-recursive}'
wrappers:
- infra-wrappers:
build-timeout: '{build-timeout}'
triggers:
- gerrit-trigger-patch-submitted:
server: '{server-name}'
project: '{project}'
branch: '{branch}'
files: '**/Vagrantfile'
builders:
- integration-install-vagrant
- shell: !include-raw-escape: 'vagrantfile-verify.sh'
publishers:
- lf-infra-publish
|