Merge pull request #44 from frdeso/lava_fuzzing_remove_coredump
[lttng-ci.git] / jobs / ctf-java.yml
CommitLineData
984bd70b 1- defaults:
e3f027ec 2 name: ctf-java-mvn
984bd70b
MJ
3 description: |
4 Nightly build of CTF Java.
5
6 <p>Job is managed by Jenkins Job Builder.</p>
7
8 project-type: maven
9
10 maven:
11 goals: 'clean install'
12 private-repository: 'local-to-workspace'
13 automatic-fingerprinting: false
14 per-module-email: false
15 settings: 'org.jenkinsci.plugins.configfiles.maven.MavenSettingsConfig277b7a2d-b7a6-4ae4-a32d-18c02514e9e4'
16 settings-type: cfp
17
18 wrappers:
19 - workspace-cleanup
20 - timestamps
21 - ansicolor
22
23 scm:
24 - git:
25 url: git://github.com/{github_user}/{github_name}.git
26 browser: githubweb
27 browser-url: https://github.com/{github_user}/{github_name}
28 branches:
29 - origin/{version}
30 skip-tag: true
31
32 triggers:
33 - pollscm:
34 cron: "@hourly"
1a8b8c93 35 - timed: "@daily"
984bd70b
MJ
36
37 properties:
38 - build-discarder:
39 num-to-keep: 2
40 - github:
41 url: https://github.com/{github_user}/{github_name}
42
e3f027ec
MJ
43- defaults:
44 name: ctf-java
45 description: |
46 Nightly build of CTF Java.
47
48 <p>Job is managed by Jenkins Job Builder.</p>
49
50 project-type: freestyle
51
52 wrappers:
53 - workspace-cleanup
54 - timestamps
55 - ansicolor
56
57 scm:
58 - git:
59 url: git://github.com/{github_user}/{github_name}.git
60 browser: githubweb
61 browser-url: https://github.com/{github_user}/{github_name}
62 branches:
63 - origin/{version}
64 skip-tag: true
65
66 triggers:
67 - pollscm:
68 cron: "@hourly"
69
70 properties:
71 - build-discarder:
72 num-to-keep: 2
73 - github:
74 url: https://github.com/{github_user}/{github_name}
75
984bd70b
MJ
76
77## Templates
78- job-template:
79 name: ctf-java_{version}_build
e3f027ec 80 defaults: ctf-java-mvn
984bd70b
MJ
81
82 publishers:
83 - warnings:
84 console-log-parsers:
85 - 'Maven'
86 total-thresholds:
87 unstable:
88 total-all: 0
89 total-high: 0
90 total-normal: 0
91 total-low: 0
d2d979a6
MJ
92 messages-to-ignore: |-
93 No sources found skipping Kotlin compile
94 Ignoring project type pom - supportedProjectTypes = \[jar, bundle\]
95 ^Tests run:.*
ad947ee7
MJ
96 .*Source root doesn't exist.*
97 Could not transfer metadata.*codehaus-snapshots.*
984bd70b
MJ
98 - workspace-cleanup
99 - email-ext:
42c2668c
JR
100 recipients: '{obj:email_for_all_failure}'
101 always: false
102 unstable: true
103 first-failure: false
104 first-unstable: false
105 not-built: false
106 aborted: false
107 regression: false
108 failure: true
109 second-failure: false
110 improvement: false
111 still-failing: false
112 success: false
113 fixed: false
114 fixed-unhealthy: true
115 still-unstable: false
116 pre-build: false
117 matrix-trigger: only-parent
118 send-to:
119 - recipients
120 - email-ext:
121 recipients: '{obj:email_to}'
122 reply-to: ci-notification@lists.lttng.org
123 always: false
124 unstable: false
125 first-failure: true
126 first-unstable: true
127 not-built: false
128 aborted: false
129 regression: false
130 failure: false
131 second-failure: false
132 improvement: false
133 still-failing: false
134 success: false
135 fixed: false
136 fixed-unhealthy: true
137 still-unstable: false
138 pre-build: false
139 matrix-trigger: only-parent
140 send-to:
141 - recipients
142
984bd70b 143
e3f027ec
MJ
144- job-template:
145 name: ctf-java_{version}_coverity
146 defaults: ctf-java
147 node: 'x86-64'
148
149 triggers:
150 - pollscm:
151 cron: "@daily"
152
153 wrappers:
154 - workspace-cleanup
155 - timestamps
156 - ansicolor:
157 colormap: xterm
158 - credentials-binding:
159 - username-password-separated:
160 credential-id: ctf-java_coverity_token
161 username: COVERITY_SCAN_PROJECT_NAME
162 password: COVERITY_SCAN_TOKEN
163
164 scm:
165 - git:
166 url: git://github.com/{github_user}/{github_name}.git
167 browser: githubweb
168 browser-url: https://github.com/{github_user}/{github_name}
169 branches:
170 - origin/{version}
171 skip-tag: true
172 basedir: src/ctf-java
173
174 builders:
175 - maven-target:
176 maven-version: "default"
177 goals: "-version"
178 private-repository: true
179 settings: 'org.jenkinsci.plugins.configfiles.maven.MavenSettingsConfig277b7a2d-b7a6-4ae4-a32d-18c02514e9e4'
180 - shell:
181 !include-raw-escape: scripts/common/coverity.sh
182
183 publishers:
184 - workspace-cleanup
185 - archive:
186 artifacts: 'analysis-results.tgz,cov-int/**'
187 allow-empty: false
188
189
984bd70b
MJ
190## Project
191- project:
192 name: ctf-java
193 github_user: efficios
194 github_name: ctf-java
42c2668c
JR
195 email_to: 'ci-notification@lists.lttng.org, cc:alexmonthy@efficios.com'
196 email_for_all_failure: 'alexmonthy@efficios.com'
984bd70b
MJ
197 version:
198 - master
199 jobs:
200 - 'ctf-java_{version}_build'
e3f027ec
MJ
201 - 'ctf-java_{version}_coverity':
202 version: master
This page took 0.029542 seconds and 4 git commands to generate.