blob: 2868504298d2fbee6fdf49d1ee91cca6bbbdb1d2 [file] [log] [blame]
#!/bin/bash -xv
#*******************************************************************************
# Copyright (c) 2018 Willink Transformations and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v20.html
#
# Contributors:
# E.D.Willink - initial API and implementation
#*******************************************************************************
#
# Promote the PUBLISH__URL to an updates repository.
#
# PUBLISH__URL The zip to be published e.g. https://ci.eclipse.org/ocl/job/qvtd-master/25/artifact/releng/org.eclipse.qvtd.releng.build-site/target/org.eclipse.qvtd-0.16.0.v20171025-1600.zip
# PUBLISH__VERSION Unqualified version e.g. 0.16.0
# PUBLISH__BUILD_T Build type N/I/S, blank suppresses promotion
# PUBLISH__QUALIFIER Version qualifier e.g. v20171025-1600
#
updatesFolder="/home/data/httpd/download.eclipse.org/mmt/qvtd/updates/"
group="modeling.mmt.qvtd"
localZip="qvtd.zip"
projectRepoName="QVTd"
manageComposite="/shared/common/apache-ant-latest/bin/ant -f /shared/modeling/tools/promotion/manage-composite.xml"
if [ -n "${PUBLISH__BUILD_T}" ]
then
if [ "${PUBLISH__BUILD_T}" = "N" ]
then
buildFolder="${updatesFolder}nightly"
buildRepoName="Nightly"
elif [ "${PUBLISH__BUILD_T}" = "I" ]
then
buildFolder="${updatesFolder}interim"
buildRepoName="Interim"
elif [ "${PUBLISH__BUILD_T}" = "S" ]
then
buildFolder="${updatesFolder}milestones"
buildRepoName="Milestones"
else
buildFolder="${updatesFolder}other"
buildRepoName="Other"
fi
if [ ! -d "${buildFolder}" ]
then
mkdir -p ${buildFolder}
fi
pushd ${buildFolder}
if [ ! -d "${PUBLISH__VERSION}" ]
then
mkdir ${PUBLISH__VERSION}
versionCompositeName="${projectRepoName} ${buildRepoName} Repository"
${manageComposite} add -Dchild.repository=${PUBLISH__VERSION} -Dcomposite.name="${versionCompositeName}"
fi
if [ "${PUBLISH__BUILD_T}" = "N" ]
then
curl -s -k ${PUBLISH__URL} > ${localZip}
unzip -ou ${localZip} -d new${PUBLISH__VERSION}
chgrp -R ${group} new${PUBLISH__VERSION}
chmod -R g+w new${PUBLISH__VERSION}
mv ${PUBLISH__VERSION} old${PUBLISH__VERSION}
mv new${PUBLISH__VERSION} ${PUBLISH__VERSION}
rm -rf old${PUBLISH__VERSION} ${localZip}
elif [ "${PUBLISH__BUILD_T}" = "I" ]
then
curl -s -k ${PUBLISH__URL} > ${localZip}
unzip -ou ${localZip} -d new${PUBLISH__VERSION}
chgrp -R ${group} new${PUBLISH__VERSION}
chmod -R g+w new${PUBLISH__VERSION}
mv ${PUBLISH__VERSION} old${PUBLISH__VERSION}
mv new${PUBLISH__VERSION} ${PUBLISH__VERSION}
rm -rf old${PUBLISH__VERSION} ${localZip}
elif [ "${PUBLISH__BUILD_T}" = "S" ]
then
pushd ${buildFolder}/${PUBLISH__VERSION}
tQualifier="${PUBLISH__BUILD_T}${PUBLISH__QUALIFIER:1:8}${PUBLISH__QUALIFIER:10:4}"
versionFolder="${buildFolder}/${tQualifier}"
if [ ! -d "${tQualifier}" ]
then
mkdir ${tQualifier}
fi
curl -s -k ${PUBLISH__URL} > ${localZip}
unzip ${localZip} -d ${tQualifier}
rm ${localZip}
chgrp -R ${group} ${tQualifier}
chmod -R g+w ${tQualifier}
${manageComposite} add -Dchild.repository=${tQualifier} -Dcomposite.name="${projectRepoName} ${PUBLISH__VERSION} ${buildRepoName} Repository"
popd
fi
popd
fi