blob: 5c7a50391ac58394a1041f9ac42aedf579ab416b (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
- integration_maven_common: &integration_maven_common
name: integration-maven-common
######################
# Default parameters #
######################
archive-artifacts: >
**/*.log
**/hs_err_*.log
**/target/**/feature.xml
**/target/failsafe-reports/failsafe-summary.xml
**/target/surefire-reports/*-output.txt
#####################
# Job Configuration #
#####################
project-type: freestyle
node: "{build-node}"
properties:
- lf-infra-properties:
build-days-to-keep: "{build-days-to-keep}"
parameters:
- lf-infra-parameters:
project: "{project}"
branch: "{branch}"
stream: "{stream}"
- lf-infra-maven-parameters:
mvn-opts: "{mvn-opts}"
mvn-params: "{mvn-params}"
mvn-version: "{mvn-version}"
- string:
name: ARCHIVE_ARTIFACTS
default: "{archive-artifacts}"
description: Artifacts to archive to the logs server.
scm:
- lf-infra-gerrit-scm:
jenkins-ssh-credential: "{jenkins-ssh-credential}"
git-url: "{git-url}"
refspec: "$GERRIT_REFSPEC"
branch: "$GERRIT_BRANCH"
submodule-recursive: "{submodule-recursive}"
submodule-timeout: "{submodule-timeout}"
submodule-disable: "{submodule-disable}"
choosing-strategy: default
wrappers:
- lf-infra-wrappers:
build-timeout: "{build-timeout}"
jenkins-ssh-credential: "{jenkins-ssh-credential}"
publishers:
- lf-infra-publish
#############################
# Maven Snapshot for Docker #
#############################
- integration_maven_docker_snapshot: &integration_maven_docker_snapshot
name: integration-maven-docker-snapshot
builders:
- lf-infra-pre-build
- lf-jacoco-nojava-workaround
- lf-maven-install:
mvn-version: "{mvn-version}"
- lf-update-java-alternatives:
java-version: "{java-version}"
- lf-infra-docker-login:
global-settings-file: "{mvn-global-settings}"
settings-file: "{mvn-settings}"
# must provide maven settings AFTER docker-login due to its cleanup
- lf-provide-maven-settings:
global-settings-file: "{mvn-global-settings}"
settings-file: "{mvn-settings}"
- lf-maven-versions-plugin:
maven-versions-plugin: "{maven-versions-plugin}"
version-properties-file: "{version-properties-file}"
mvn-version: "{mvn-version}"
mvn-pom: "{mvn-pom}"
mvn-settings: "{mvn-settings}"
- inject:
properties-content: |
CONTAINER_PULL_REGISTRY={container-public-registry}
CONTAINER_PUSH_REGISTRY={container-snapshot-registry}
- lf-maven-build:
mvn-goals: "{mvn-goals}"
- lf-sigul-sign-dir:
sign-artifacts: "{sign-artifacts}"
sign-dir: "$WORKSPACE/m2repo"
sign-mode: "{sign-mode}"
- lf-provide-maven-settings-cleanup
- job-template:
name: "{project-name}-{stream}-maven-docker-snapshot"
id: gerrit-maven-docker-snapshot-PoC
<<: *integration_maven_common
# yamllint disable-line rule:key-duplicates
<<: *integration_maven_docker_snapshot
######################
# Default parameters #
######################
branch: master
build-days-to-keep: 30 # 30 days in case a release takes long to get approved.
build-timeout: 60
disable-job: false
git-url: "$GIT_URL/$PROJECT"
github-url: "https://github.com"
java-version: openjdk8
maven-versions-plugin: false
version-properties-file: version.properties
mvn-central: false
mvn-global-settings: global-settings
mvn-goals: clean deploy
mvn-opts: ""
mvn-params: ""
mvn-version: mvn35
ossrh-profile-id: ""
mvn-pom: ""
sign-artifacts: false
sign-mode: serial
stream: master
submodule-recursive: true
submodule-timeout: 10
submodule-disable: false
parameters:
- infra-parameters:
project: '{project}'
branch: '{branch}'
refspec: 'refs/heads/{branch}'
artifacts: '{archive-artifacts}'
- integration-unique-docker-tag:
unique-docker-tag: ''
|