forked from eclipse-cbi/jiro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins-new-instance.sh
executable file
·75 lines (61 loc) · 2.11 KB
/
jenkins-new-instance.sh
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
#! /usr/bin/env bash
#*******************************************************************************
# Copyright (c) 2018 Eclipse Foundation and others.
# This program and the accompanying materials are made available
# under the terms of the Eclipse Public License 2.0
# which is available at http://www.eclipse.org/legal/epl-v20.html,
# or the MIT License which is available at https://opensource.org/licenses/MIT.
# SPDX-License-Identifier: EPL-2.0 OR MIT
#*******************************************************************************
# Bash strict-mode
set -o errexit
set -o nounset
set -o pipefail
IFS=$'\n\t'
script_name="$(basename "${BASH_SOURCE[0]}")"
SCRIPT_FOLDER="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
project_name="${1:-}"
display_name="${2:-}"
usage() {
printf "Usage: %s project_name display_name\n" "$script_name"
printf "\t%-16s full name (e.g. technology.cbi for CBI project).\n" "project_name"
printf "\t%-16s display name (e.g. 'Eclipse CBI' for CBI project).\n" "display_name"
}
# check that project name is not empty
if [[ -z "${project_name}" ]]; then
printf "ERROR: a project name must be given.\n"
usage
exit 1
fi
# check that display name is not empty
if [[ -z "${display_name}" ]]; then
printf "ERROR: a display name must be given.\n"
usage
exit 1
fi
# check that project name contains a dot
if [[ "$project_name" != *.* ]]; then
printf "ERROR: the full project name with a dot must be given (e.g. technology.cbi).\n"
usage
exit 1
fi
if [[ -f "${SCRIPT_FOLDER}/instances/${project_name}/config.jsonnet" ]]; then
echo "WARNING: ${SCRIPT_FOLDER}/instances/${project_name}/config.jsonnet already exists. Skipping..."
exit 0
fi
mkdir -p "${SCRIPT_FOLDER}/instances/${project_name}"
cat <<EOF > "${SCRIPT_FOLDER}/instances/${project_name}/config.jsonnet"
{
project+: {
fullName: "${project_name}",
displayName: "${display_name}",
}
}
EOF
cat <<EOG > "${SCRIPT_FOLDER}/instances/${project_name}//jiro.jsonnet"
local jiro = import '../../templates/jiro.libsonnet';
jiro+ {
"config.json"+: import "config.jsonnet",
}
EOG
echo "Basic JIRO config created for ${project_name}."