2019-02-05 15:46:52 +00:00
|
|
|
#!/bin/bash -e
|
2015-05-30 01:29:48 +00:00
|
|
|
|
2021-04-06 11:04:04 +00:00
|
|
|
SCRIPTNAME="$(basename "${0}")"
|
|
|
|
BASEDIR="$(readlink -f "$(dirname "${0}")")"
|
|
|
|
|
2015-05-30 01:29:48 +00:00
|
|
|
if [ ! -d .git ]; then
|
2021-04-06 11:04:04 +00:00
|
|
|
echo "$SCRIPTNAME: Full path to the script: $BASEDIR/$SCRIPTNAME"
|
|
|
|
echo "$SCRIPTNAME: No .git present. Run this from the base dir of the git checkout."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Running the script from a directory containing a colon anywhere in the path
|
|
|
|
# will expose us to the dreaded "[BUG] npm run [command] failed if the directory
|
|
|
|
# path contains colon" bug https://github.com/npm/cli/issues/633
|
|
|
|
# (see https://tracker.ceph.com/issues/39556 for details)
|
|
|
|
if [[ "$BASEDIR" == *:* ]] ; then
|
|
|
|
echo "$SCRIPTNAME: Full path to the script: $BASEDIR/$SCRIPTNAME"
|
|
|
|
echo "$SCRIPTNAME: The path to the script contains a colon. Their presence has been known to break the script."
|
2015-05-30 01:29:48 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
version=$1
|
2019-02-05 15:46:52 +00:00
|
|
|
[ -z "$version" ] && version=$(git describe --long --match 'v*' | sed 's/^v//')
|
|
|
|
if expr index $version '-' > /dev/null; then
|
|
|
|
rpm_version=$(echo $version | cut -d - -f 1-1)
|
2024-07-21 08:15:11 +00:00
|
|
|
rpm_release=$(echo $version | cut -d - -f 2- | sed 's/-/./g')
|
2019-02-05 15:46:52 +00:00
|
|
|
else
|
|
|
|
rpm_version=$version
|
|
|
|
rpm_release=0
|
|
|
|
fi
|
2015-05-30 01:29:48 +00:00
|
|
|
|
2019-02-05 15:46:52 +00:00
|
|
|
outfile="ceph-$version"
|
2015-06-01 18:19:46 +00:00
|
|
|
echo "version $version"
|
|
|
|
|
2015-05-30 01:29:48 +00:00
|
|
|
# update submodules
|
|
|
|
echo "updating submodules..."
|
|
|
|
force=$(if git submodule usage 2>&1 | grep --quiet 'update.*--force'; then echo --force ; fi)
|
2024-11-08 19:43:16 +00:00
|
|
|
quiet_or_progress=$(if test -n "$JENKINS_URL"; then echo --quiet; else echo --progress; fi)
|
|
|
|
if ! git submodule sync || ! git submodule update $force --init --recursive $quiet_or_progress; then
|
2015-05-30 01:29:48 +00:00
|
|
|
echo "Error: could not initialize submodule projects"
|
|
|
|
echo " Network connectivity might be required."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-11-09 03:58:10 +00:00
|
|
|
download_from() {
|
|
|
|
fname=$1
|
2017-09-28 05:28:53 +00:00
|
|
|
shift
|
2020-11-09 03:58:10 +00:00
|
|
|
sha256=$1
|
2017-09-28 05:28:53 +00:00
|
|
|
shift
|
|
|
|
set +e
|
|
|
|
while true; do
|
|
|
|
url_base=$1
|
|
|
|
shift
|
|
|
|
if [ -z $url_base ]; then
|
2022-03-07 22:14:50 +00:00
|
|
|
echo "Error: failed to download $fname."
|
2017-09-28 05:28:53 +00:00
|
|
|
exit
|
|
|
|
fi
|
2020-11-09 03:58:10 +00:00
|
|
|
url=$url_base/$fname
|
2024-01-08 16:24:18 +00:00
|
|
|
wget --no-verbose -O $fname $url
|
2020-11-09 03:58:10 +00:00
|
|
|
if [ $? != 0 -o ! -e $fname ]; then
|
2017-09-28 05:28:53 +00:00
|
|
|
echo "Download of $url failed"
|
2020-11-09 03:58:10 +00:00
|
|
|
elif [ $(sha256sum $fname | awk '{print $1}') != $sha256 ]; then
|
2022-03-07 22:14:50 +00:00
|
|
|
echo "Error: failed to download $fname: SHA256 mismatch."
|
2017-09-28 05:28:53 +00:00
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
set -e
|
2020-11-09 03:58:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
download_boost() {
|
|
|
|
boost_version=$1
|
|
|
|
shift
|
|
|
|
boost_sha256=$1
|
|
|
|
shift
|
|
|
|
boost_version_underscore=$(echo $boost_version | sed 's/\./_/g')
|
|
|
|
boost_fname=boost_${boost_version_underscore}.tar.bz2
|
|
|
|
download_from $boost_fname $boost_sha256 $*
|
2017-11-24 05:56:02 +00:00
|
|
|
tar xjf $boost_fname -C src \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/doc" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/example" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/examples" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/meta" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/test" \
|
|
|
|
--exclude="$boost_version_underscore/tools/boostbook" \
|
|
|
|
--exclude="$boost_version_underscore/tools/quickbook" \
|
|
|
|
--exclude="$boost_version_underscore/tools/auto_index" \
|
|
|
|
--exclude='doc' --exclude='more' --exclude='status'
|
2017-08-31 17:00:04 +00:00
|
|
|
mv src/boost_${boost_version_underscore} src/boost
|
2017-11-24 02:27:19 +00:00
|
|
|
tar cf ${outfile}.boost.tar ${outfile}/src/boost
|
2017-08-31 17:00:04 +00:00
|
|
|
rm -rf src/boost
|
|
|
|
}
|
|
|
|
|
2020-11-09 04:25:24 +00:00
|
|
|
download_liburing() {
|
|
|
|
liburing_version=$1
|
|
|
|
shift
|
|
|
|
liburing_sha256=$1
|
|
|
|
shift
|
|
|
|
liburing_fname=liburing-${liburing_version}.tar.gz
|
|
|
|
download_from $liburing_fname $liburing_sha256 $*
|
|
|
|
tar xzf $liburing_fname -C src \
|
|
|
|
--exclude=debian \
|
|
|
|
--exclude=examples \
|
|
|
|
--exclude=man \
|
|
|
|
--exclude=test
|
|
|
|
# normalize the names, liburing-0.7 if downloaded from git.kernel.dk,
|
|
|
|
# liburing-liburing-0.7 from github.com
|
|
|
|
mv src/liburing-* src/liburing
|
|
|
|
tar cf ${outfile}.liburing.tar ${outfile}/src/liburing
|
|
|
|
rm -rf src/liburing
|
|
|
|
}
|
|
|
|
|
2021-04-14 01:26:55 +00:00
|
|
|
download_pmdk() {
|
|
|
|
pmdk_version=$1
|
|
|
|
shift
|
|
|
|
pmdk_sha256=$1
|
|
|
|
shift
|
|
|
|
pmdk_fname=pmdk-${pmdk_version}.tar.gz
|
|
|
|
download_from $pmdk_fname $pmdk_sha256 $*
|
|
|
|
tar xzf $pmdk_fname -C src \
|
|
|
|
--exclude="pmdk-${pmdk_version}/doc" \
|
|
|
|
--exclude="pmdk-${pmdk_version}/src/test" \
|
|
|
|
--exclude="pmdk-${pmdk_version}/src/examples" \
|
|
|
|
--exclude="pmdk-${pmdk_version}/src/benchmarks"
|
|
|
|
mv src/pmdk-${pmdk_version} src/pmdk
|
|
|
|
tar cf ${outfile}.pmdk.tar ${outfile}/src/pmdk
|
|
|
|
rm -rf src/pmdk
|
|
|
|
}
|
|
|
|
|
2018-02-13 14:03:05 +00:00
|
|
|
build_dashboard_frontend() {
|
|
|
|
CURR_DIR=`pwd`
|
2018-03-14 11:11:55 +00:00
|
|
|
TEMP_DIR=`mktemp -d`
|
2019-10-01 13:55:31 +00:00
|
|
|
|
2019-12-27 09:55:21 +00:00
|
|
|
$CURR_DIR/src/tools/setup-virtualenv.sh $TEMP_DIR
|
2018-03-14 11:11:55 +00:00
|
|
|
$TEMP_DIR/bin/pip install nodeenv
|
2024-05-28 12:20:53 +00:00
|
|
|
$TEMP_DIR/bin/nodeenv --verbose -p --node=20.13.1
|
2018-03-15 08:50:22 +00:00
|
|
|
cd src/pybind/mgr/dashboard/frontend
|
2019-10-01 13:55:31 +00:00
|
|
|
|
2018-03-14 11:11:55 +00:00
|
|
|
. $TEMP_DIR/bin/activate
|
2020-10-27 00:37:15 +00:00
|
|
|
NG_CLI_ANALYTICS=false timeout 1h npm ci
|
2020-04-26 14:16:58 +00:00
|
|
|
echo "Building ceph-dashboard frontend with build:localize script";
|
2022-05-04 11:21:20 +00:00
|
|
|
# we need to use "--" because so that "--configuration production"
|
|
|
|
# survives accross all scripts redirections inside package.json
|
2024-01-26 03:49:05 +00:00
|
|
|
DASHBOARD_FRONTEND_LANGS="ALL" npm run build:localize -- --configuration production
|
2018-03-14 11:11:55 +00:00
|
|
|
deactivate
|
2018-02-13 14:03:05 +00:00
|
|
|
cd $CURR_DIR
|
2018-03-14 11:11:55 +00:00
|
|
|
rm -rf $TEMP_DIR
|
2018-03-15 08:50:22 +00:00
|
|
|
tar cf dashboard_frontend.tar $outfile/src/pybind/mgr/dashboard/frontend/dist
|
2018-02-13 14:03:05 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 12:00:41 +00:00
|
|
|
generate_rook_ceph_client() {
|
|
|
|
$outfile/src/pybind/mgr/rook/generate_rook_ceph_client.sh
|
|
|
|
tar cf rook_ceph_client.tar $outfile/src/pybind/mgr/rook/rook_client/*.py
|
|
|
|
}
|
|
|
|
|
2015-05-30 01:29:48 +00:00
|
|
|
# clean out old cruft...
|
|
|
|
echo "cleanup..."
|
2024-03-06 09:00:49 +00:00
|
|
|
rm -rf $outfile*
|
2015-05-30 01:29:48 +00:00
|
|
|
|
|
|
|
# build new tarball
|
|
|
|
echo "building tarball..."
|
2015-05-31 21:58:49 +00:00
|
|
|
bin/git-archive-all.sh --prefix ceph-$version/ \
|
|
|
|
--verbose \
|
|
|
|
--ignore corpus \
|
|
|
|
$outfile.tar
|
2016-06-10 20:47:32 +00:00
|
|
|
|
2016-06-28 15:40:37 +00:00
|
|
|
# populate files with version strings
|
2016-10-26 14:51:06 +00:00
|
|
|
echo "including src/.git_version, ceph.spec"
|
2016-10-27 16:39:20 +00:00
|
|
|
|
2019-02-05 15:46:52 +00:00
|
|
|
(git rev-parse HEAD ; echo $version) 2> /dev/null > src/.git_version
|
2016-07-22 15:19:40 +00:00
|
|
|
|
2018-01-29 12:38:08 +00:00
|
|
|
if [ -r /etc/os-release ]; then
|
|
|
|
source /etc/os-release
|
|
|
|
case $ID in
|
|
|
|
opensuse*|suse|sles)
|
|
|
|
if [ "x$rpm_release" != "x0" ] ; then
|
|
|
|
rpm_release=$(echo $rpm_release | sed 's/.g/+g/')
|
|
|
|
rpm_version="${rpm_version}.${rpm_release}"
|
|
|
|
rpm_release="0"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2020-08-08 08:57:37 +00:00
|
|
|
for spec in ceph.spec.in; do
|
2016-12-21 01:21:57 +00:00
|
|
|
cat $spec |
|
2019-07-24 16:57:27 +00:00
|
|
|
sed "s/@PROJECT_VERSION@/$rpm_version/g" |
|
2016-12-21 01:21:57 +00:00
|
|
|
sed "s/@RPM_RELEASE@/$rpm_release/g" |
|
|
|
|
sed "s/@TARBALL_BASENAME@/ceph-$version/g" > `echo $spec | sed 's/.in$//'`
|
|
|
|
done
|
2016-06-10 20:47:32 +00:00
|
|
|
ln -s . $outfile
|
2020-08-08 08:57:37 +00:00
|
|
|
tar cvf $outfile.version.tar $outfile/src/.git_version $outfile/ceph.spec
|
2017-11-24 02:27:19 +00:00
|
|
|
# NOTE: If you change this version number make sure the package is available
|
|
|
|
# at the three URLs referenced below (may involve uploading to download.ceph.com)
|
2024-05-20 23:14:59 +00:00
|
|
|
boost_version=1.85.0
|
|
|
|
download_boost $boost_version 7009fe1faa1697476bdc7027703a2badb84e849b7b0baad5086b087b971f8617 \
|
2024-01-08 18:08:03 +00:00
|
|
|
https://download.ceph.com/qa \
|
2024-01-08 18:08:41 +00:00
|
|
|
https://archives.boost.io/release/$boost_version/source
|
2024-02-27 14:25:32 +00:00
|
|
|
download_liburing 2.5 456f5f882165630f0dc7b75e8fd53bd01a955d5d4720729b4323097e6e9f2a98 \
|
2020-11-09 04:25:24 +00:00
|
|
|
https://github.com/axboe/liburing/archive \
|
|
|
|
https://git.kernel.dk/cgit/liburing/snapshot
|
2021-01-29 02:05:53 +00:00
|
|
|
pmdk_version=1.10
|
|
|
|
download_pmdk $pmdk_version 08dafcf94db5ac13fac9139c92225d9aa5f3724ea74beee4e6ca19a01a2eb20c \
|
2021-04-14 01:26:55 +00:00
|
|
|
https://github.com/pmem/pmdk/releases/download/$pmdk_version
|
2018-02-13 14:03:05 +00:00
|
|
|
build_dashboard_frontend
|
2020-01-13 12:00:41 +00:00
|
|
|
generate_rook_ceph_client
|
2020-11-09 04:31:34 +00:00
|
|
|
for tarball in $outfile.version \
|
|
|
|
$outfile.boost \
|
|
|
|
$outfile.liburing \
|
2021-04-14 01:26:55 +00:00
|
|
|
$outfile.pmdk \
|
2020-11-09 04:31:34 +00:00
|
|
|
dashboard_frontend \
|
|
|
|
rook_ceph_client \
|
|
|
|
$outfile; do
|
|
|
|
tar --concatenate -f $outfile.all.tar $tarball.tar
|
|
|
|
rm $tarball.tar
|
|
|
|
done
|
2017-08-31 17:00:04 +00:00
|
|
|
mv $outfile.all.tar $outfile.tar
|
2016-06-10 20:47:32 +00:00
|
|
|
rm $outfile
|
|
|
|
|
2015-06-01 18:20:03 +00:00
|
|
|
echo "compressing..."
|
2015-05-31 21:57:41 +00:00
|
|
|
bzip2 -9 $outfile.tar
|
2015-05-30 01:29:48 +00:00
|
|
|
|
|
|
|
echo "done."
|