blob: 16625af758d24a6da4035f24c5d1dd939522978c (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
- job:
name: trigger-lt-qcom-u-boot
project-type: freestyle
defaults: global
properties:
- authorization:
anonymous:
- job-read
- job-extended-read
- job-workspace
linaro-qualcomm-ci:
- job-read
- job-extended-read
- job-build
- job-cancel
- build-discarder:
days-to-keep: 30
num-to-keep: 30
artifact-num-to-keep: 1
parameters:
- string:
name: UBOOT_REPO_URL
default: 'https://gitlab.denx.de/u-boot/u-boot.git'
- string:
name: UBOOT_BRANCH
default: 'master'
disabled: false
node: triggers
display-name: 'DELETE ME'
scm:
- git:
url: ${UBOOT_REPO_URL}
refspec: +refs/heads/${UBOOT_BRANCH}:refs/remotes/origin/${UBOOT_BRANCH}
name: origin
branches:
- refs/heads/${UBOOT_BRANCH}
shallow-clone: true
wipe-workspace: false
triggers:
- pollscm:
cron: '0 0 * * *'
wrappers:
- timestamps
- build-name:
name: '#${BUILD_NUMBER}-${GIT_REVISION,length=8}'
builders:
- shell: |
#!/bin/bash -e
echo UBOOT_REPO_URL=${UBOOT_REPO_URL} > qcomlt_parameters
echo UBOOT_BRANCH=${UBOOT_BRANCH} >> qcomlt_parameters
publishers:
- trigger-parameterized-builds:
- project:
- 'lt-qcom-u-boot'
condition: SUCCESS
property-file: qcomlt_parameters
- email-ext:
recipients: 'leonardo.sandoval@linaro.org nicolas.dechesne@linaro.org'
failure: true
still-failing: true
|