42 lines
1.3 KiB
Bash
Executable File
42 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Build an rc .tar.gz file, ready to be published to NPM.
|
|
#
|
|
# An RC is built in a similar way as a snaphsot, except that
|
|
# we package it as a tar.gz file
|
|
# This is so that, if this candidate is aproved for publication,
|
|
# then the tar.gz can be published to NPM (i.e.
|
|
# without requiring another rebuild/repackaging to change it)
|
|
|
|
workdir=`pwd`
|
|
sources=$workdir/sts4/theia-extensions/theia-$extension_id
|
|
ext_sources=$workdir/sts4/theia-extensions/theia-$extension_id/$extension_id
|
|
|
|
version=`cat theia-version/version`
|
|
echo "extension_id=${extension_id}"
|
|
echo "version=${version}"
|
|
|
|
if [ -d "maven-cache" ]; then
|
|
echo "Prepopulating maven cache"
|
|
tar xzf maven-cache/*.tar.gz -C ${HOME}
|
|
else
|
|
echo "!!!No stored maven cache found!!! "
|
|
exit -1
|
|
fi
|
|
|
|
cd ${sources}
|
|
# Don't append RC to package version in package.json
|
|
version_to_set="${version%-*}"
|
|
echo "Version for package ${version_to_set}"
|
|
lerna version $version_to_set --exact --no-git-tag-version --no-push --yes
|
|
./build.sh
|
|
|
|
cd ${ext_sources}
|
|
yarn pack
|
|
|
|
#Because the RC was with a unqualified version...
|
|
#The RC version qualifier isn't automaticlaly present in the file name.
|
|
#So we must explicitly rename the file to include the RC version qualifier.
|
|
cp *.tgz $workdir/out/theia-$extension_id-${version}.tgz
|