blob: a1167fee0ede5f0d9e8f0b18a262905a87a54245 [file] [log] [blame]
robert.tomczyk5fe5de72019-07-22 20:48:58 +01001---
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2018-2019 Nordix Foundation.
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# SPDX-License-Identifier: Apache-2.0
19# ============LICENSE_END=========================================================
20- job-template:
21 name: 'apache-geode-{test-type}Test-jdk{java-test-version}'
22
23 node: geode-ubuntu1804
24 disabled: false
25 concurrent: true
26
27 properties:
28 - logrotate
29 - github:
30 url: 'https://github.com/Nordix/geode.git/'
31
32 parameters:
33 - string:
34 name: PROJECT
35 default: 'Nordix/geode'
36 description: JJB configured PROJECT parameter to identify a Nordix GitHub project
37 - string:
38 name: BRANCH
39 default: 'release-nordix/1.9.0'
40 description: JJB configured BRANCH parameter for Nordix GitHub project
41 - string:
42 name: ARTIFACT_SLUG
43 default: '{artifact-slug}'
44 description: 'The geode artifact required'
45 - string:
46 name: GRADLE_TASK
47 default: '{gradle-task}'
48 description: 'Single atomic piece of work for a build, such as compiling classes or generating javadoc'
49 - string:
50 name: PARALLEL_GRADLE
51 default: '{parallel-gradle}'
52 description: 'Parallel execution of gradle tasks'
53 - string:
54 name: PARALLEL_DUNIT
55 default: '{parallel-dunit}'
56 description: 'Parallel test execution using docker images'
57 - string:
58 name: DUNIT_PARALLEL_FORKS
59 default: '{dunit-parallel-forks}'
60 description: 'Control how many concurrent dunit (using docker) tests will be run'
61 - string:
62 name: JAVA_BUILD_VERSION
63 default: '{java-build-version}'
64 description: 'Java version use to build geode'
65 - string:
66 name: JAVA_TEST_VERSION
67 default: '{java-test-version}'
68 description: 'Java version use during test execution'
69
70 scm:
71 - git-scm-github:
72 branch: '$BRANCH'
73 refspec: ''
74 wipe_workspace: true
75 clean_before: false
76 base_dir: 'geode'
77
78 builders:
79 - '{build-executor}'
80
robert.tomczyk708ce322019-07-25 08:30:02 +010081 publishers:
82 - workspace-cleanup:
83 clean-if:
84 - failure: false
robert.tomczykfe85b442020-05-25 11:05:56 +010085 - html-publisher:
86 name: "{test-type} HTML Report"
87 dir: "geode/build/reports/combined"
88 files: "index.html"
89 keep-all: false
90 allow-missing: true
91 link-to-last-build: false
robert.tomczykc8dcf1c2019-07-25 20:30:29 +010092 - notify-slack:
robert.tomczykcfdc0de2019-11-15 12:44:11 +000093 slack-channel: '#geode-ci'
robert.tomczykc8dcf1c2019-07-25 20:30:29 +010094 notify-start: true
95 notify-success: true
96 notify-failure: true
97 notify-back-to-normal: true