-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsync.sh
executable file
·190 lines (166 loc) · 6.72 KB
/
sync.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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/bin/bash
#
# Copyright (c) 2021-2022 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#
# convert che-server upstream to devspaces-server tarball downstream using sed
set -e
SCRIPTS_DIR=$(cd "$(dirname "$0")"; pwd)
# defaults
CSV_VERSION=3.y.0 # csv 3.y.0
DS_VERSION=${CSV_VERSION%.*} # tag 3.y
usage () {
echo "
Usage: $0 -v [DS CSV_VERSION] [-s /path/to/che-server] [-t /path/to/generated]
Example: $0 -v 3.y.0 -s ${HOME}/projects/che -t /tmp/ds-server"
exit
}
if [[ $# -lt 6 ]]; then usage; fi
while [[ "$#" -gt 0 ]]; do
case $1 in
# for CSV_VERSION = 2.2.0, get DS_VERSION = 2.2
'-v') CSV_VERSION="$2"; DS_VERSION="${CSV_VERSION%.*}"; shift 1;;
# paths to use for input and ouput
'-s') SOURCEDIR="$2"; SOURCEDIR="${SOURCEDIR%/}"; shift 1;;
'-t') TARGETDIR="$2"; TARGETDIR="${TARGETDIR%/}"; shift 1;;
'--help'|'-h') usage;;
esac
shift 1
done
if [[ ! -d "${SOURCEDIR}" ]]; then usage; fi
if [[ ! -d "${TARGETDIR}" ]]; then usage; fi
if [[ "${CSV_VERSION}" == "3.y.0" ]]; then usage; fi
# global / generic changes
echo ".github/
.git/
.gitattributes
dockerfiles/
assets/branding/
build/dockerfiles/
build/scripts/sync.sh
/container.yaml
/content_sets.*
/cvp.yml
/cvp-owners.yml
/fetch-artifacts-pnc.yaml
get-source*.sh
tests/basic-test.yaml
.ci
.dependabot
.repositories-update-contributing.sh
.repositories.yaml
/CHANGELOG.md
/CODE_OF_CONDUCT.md
/CONTRIBUTING.md
/Dockerfile
/LICENSE
/NUMBERING.md
/README.md
/RELEASE.md
/devfile.yaml
/make-release.sh
/README.adoc
" > /tmp/rsync-excludes
echo "Rsync ${SOURCEDIR} to ${TARGETDIR}"
rsync -azrlt --checksum --exclude-from /tmp/rsync-excludes --delete ${SOURCEDIR}/ ${TARGETDIR}/
rm -f /tmp/rsync-excludes
# copy entrypoint.sh
rsync -azrlt --checksum ${SOURCEDIR}/build/dockerfiles/entrypoint.sh ${TARGETDIR}/build/dockerfiles
#copy upstream Dockerfile as rhel.Dockerfile
rsync -azrlt --checksum ${SOURCEDIR}/build/dockerfiles/Dockerfile ${TARGETDIR}/build/dockerfiles/rhel.Dockerfile
#copy brew.dockerfile
rsync -azrlt --checksum ${SOURCEDIR}build/dockerfiles/brew.Dockerfile ${TARGETDIR}/build/dockerfiles
# ensure shell scripts are executable
find ${TARGETDIR}/ -name "*.sh" -exec chmod +x {} \;
pnc_build_id=""
# pnc methods require properly configured ~/.config/pnc-bacon/config.yaml w/ username + clientSecret set
getPNCIDs () {
SOURCE_BRANCH=$(cd $SOURCEDIR; git branch --show-current)
# 0. compute buildConfig ID, eg., main => 8937 or 7.56.x => 8936; also compute pnc_project_id = 1274
pnc_buildconfig_id=$(pnc build-config list --query "project.name==devspaces-server;scmRevision==${SOURCE_BRANCH}" | yq -r '.[].id')
pnc_project_id=$(pnc build-config list --query "project.name==devspaces-server;scmRevision==${SOURCE_BRANCH}" | yq -r '.[].project.id')
}
getLastPNCBuild () {
# 1a. use latest build
echo "[INFO] Using latest PNC build for project.name==devspaces-server;scmRevision==${SOURCE_BRANCH} (pnc_buildconfig_id=$pnc_buildconfig_id, pnc_project_id=$pnc_project_id) ..."
pnc_build_id=$(pnc build-config list-builds ${pnc_buildconfig_id} --latest | yq -r '.[].id')
echo "[INFO] Latest PNC build ID: ${pnc_build_id}"
}
triggerPNCBuild () {
# 1b. run a new build, ~5-6mins
echo "[INFO] Start a new PNC build for project.name==devspaces-server;scmRevision==${SOURCE_BRANCH} (pnc_buildconfig_id=$pnc_buildconfig_id, pnc_project_id=$pnc_project_id) ..."
echo "[INFO] See build in progress (~6mins) at:"
echo "[INFO] https://orch.psi.redhat.com/pnc-web/#/projects/${pnc_project_id}/build-configs/${pnc_buildconfig_id}"
logfile=$(mktemp)
pnc build start --rebuild-mode=FORCE --wait ${pnc_buildconfig_id} | tee ${logfile}
# running builds can be seen from https://orch.psi.redhat.com/pnc-web/#/projects/1274
# 2. find the build ID for the completed build, eg., AVN43G4HK3YAA
pnc_build_id=$(cat ${logfile} | yq -r '.id' || echo "")
echo "[INFO] New PNC build ID: ${pnc_build_id}"
# 3. cleanup
if [[ $pnc_build_id ]]; then
rm -f ${logfile}
fi
}
# requires pnc_buildconfig_id, pnc_project_id, pnc_build_id
generateFetchArtifactsPNCYaml () {
if [[ $pnc_build_id ]]; then
# 1. use build ID to query for artifact version, eg., 7.58.0.redhat-00004
pnc_artifact_version=$(pnc build list --query "id==${pnc_build_id}" | yq -r '.[].attributes.BREW_BUILD_VERSION')
# 2. use artifact version to query for artifact ID, eg., 9401563
pnc_artifact_id=$(pnc build list-built-artifacts "${pnc_build_id}" --query "identifier==org.eclipse.che:assembly-main:tar.gz:${pnc_artifact_version}" | yq -r '.[].id')
# 3. generate new fetch-artifacts-pnc.yaml file
echo "builds:
# https://orch.psi.redhat.com/pnc-web/#/projects/${pnc_project_id}/build-configs/${pnc_buildconfig_id}/builds/${pnc_build_id}
# build id must be string
- build_id: '${pnc_build_id}'
artifacts:
# https://orch.psi.redhat.com/pnc-web/#/artifacts/${pnc_artifact_id}
# ==> org.eclipse.che:assembly-main:tar.gz:${pnc_artifact_version}
# artifact id must be string; rename it by setting a different target path/file
- id: '${pnc_artifact_id}'
target: assembly-main.tar.gz
" > ${TARGETDIR}/fetch-artifacts-pnc.yaml
echo "Updated fetch-artifacts-pnc.yaml with build $pnc_build_id and artifact pnc_artifact_id"
else
echo "No change to fetch-artifacts-pnc.yaml"
fi
}
getPNCIDs
if [[ $(cd ${TARGETDIR}; git status -s || true) ]]; then # dirty workspace, something changed upstream, need a new build
triggerPNCBuild
else
getLastPNCBuild
fi
generateFetchArtifactsPNCYaml
cat << EOT >> ${TARGETDIR}/build/dockerfiles/brew.Dockerfile
ENV SUMMARY="Red Hat OpenShift Dev Spaces server container" \\
DESCRIPTION="Red Hat OpenShift Dev Spaces server container" \\
PRODNAME="devspaces" \\
COMPNAME="server-rhel8"
LABEL summary="\$SUMMARY" \\
description="\$DESCRIPTION" \\
io.k8s.description="\$DESCRIPTION" \\
io.k8s.display-name="\$DESCRIPTION" \\
io.openshift.tags="\$PRODNAME,\$COMPNAME" \\
com.redhat.component="\$PRODNAME-\$COMPNAME-container" \\
name="\$PRODNAME/\$COMPNAME" \\
version="${DS_VERSION}" \\
pnc_artifact_id="${pnc_artifact_id}" \\
pnc_build_id="${pnc_build_id}" \\
license="EPLv2" \\
maintainer="Nick Boldt <[email protected]>" \\
io.openshift.expose-services="" \\
usage=""
EOT
echo "Converted brew.Dockerfile"
# add ignore for the tarball in mid and downstream
echo "/assembly-main.tar.gz" >> ${TARGETDIR}/.gitignore
echo "Adjusted .gitignore"