-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
35 lines (34 loc) · 1.36 KB
/
Jenkinsfile
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
#!/usr/bin/env groovy
/*
* Copyright 2017-2022 CNES - CENTRE NATIONAL d'ETUDES SPATIALES
*
* This file is part of REGARDS.
*
* REGARDS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* REGARDS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with REGARDS. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Declaratve Jenkinsfile. The language is Groovy.
* Contains the definition of a Jenkins Pipeline, is checked into source control
* and is expected to be the reference.
* To fully support multibranch builds without issues, we are using docker-compose to setup cots for each build.
* dam <- admin <- microservice
* @author Sylvain VISSIERE-GUERINET
* @author Marc SORDI
* @see https://jenkins.io/doc/book/pipeline/jenkinsfile/
*/
@Library('regards/pluginPipeline') _
pluginPipeline {
upstreamProjects = 'regards-oss-backend-gitlab'
COTS = 'rs-elasticsearch:9300 rs-rabbitmq:5672 rs-postgres:5432 rs-minio:9000'
}