mirror of
https://github.com/bytedance/g3.git
synced 2026-05-08 10:00:00 +00:00
Some checks are pending
CodeCoverage / lib unit test (push) Waiting to run
CodeCoverage / g3mkcert test (push) Waiting to run
CodeCoverage / g3keymess test (push) Waiting to run
CodeCoverage / g3proxy test (push) Waiting to run
CodeCoverage / g3bench test (push) Waiting to run
CodeCoverage / g3statsd test (push) Waiting to run
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (java-kotlin) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
CodeQL Advanced / Analyze (rust) (push) Waiting to run
CrossCompiling / Build (push) Waiting to run
Linux-CI / Build (push) Waiting to run
Linux-CI / Clippy (push) Waiting to run
Linux-CI / Build vendored (push) Waiting to run
Linux-CI / Build with OpenSSL Async Job (push) Waiting to run
MacOS-CI / Build (push) Waiting to run
MacOS-CI / Build vendored (push) Waiting to run
StaticLinking / musl (push) Waiting to run
StaticLinking / msvc (push) Waiting to run
Windows-CI / Build (push) Waiting to run
Windows-CI / Build vendored (push) Waiting to run
79 lines
1.9 KiB
Bash
Executable file
79 lines
1.9 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
SCRIPTS_DIR=$(dirname "$0")
|
|
PROJECT_DIR=$(realpath "${SCRIPTS_DIR}/..")
|
|
|
|
PACKAGE=$1
|
|
if [ -z "${PACKAGE}" ]
|
|
then
|
|
echo "package name is required"
|
|
exit 1
|
|
else
|
|
echo "Building temp deb package for ${PACKAGE}"
|
|
fi
|
|
|
|
cd "${PROJECT_DIR}"
|
|
|
|
echo "Generate license files for bundled crates"
|
|
cargo metadata --format-version 1 | scripts/release/bundle_license.py > LICENSE-BUNDLED
|
|
|
|
if [ -f ${PACKAGE}/doc/conf.py ]
|
|
then
|
|
echo "Building sphinx docs"
|
|
sphinx-build -q -b html ${PACKAGE}/doc ${PACKAGE}/doc/_build/html
|
|
fi
|
|
|
|
[ ! -d debian ] || rm -rf debian
|
|
cp -r "${PACKAGE}/debian" .
|
|
|
|
SRC_VERSION=$(cargo read-manifest --offline --manifest-path "${PACKAGE}"/Cargo.toml | jq -r '.version')
|
|
VERSION=$(dpkg-parsechangelog -S Version | sed 's/\(.*\)-[^-]*/\1/')
|
|
|
|
set_dev_version()
|
|
{
|
|
GIT_VER=$(git log -1 --pretty=format:git%cd.%h --date=format:%Y%m%d)
|
|
echo "Git version: ${GIT_VER}"
|
|
NEW_VERSION="${VERSION}${VERSION_SYMBOL}${GIT_VER}-1"
|
|
|
|
CODENAME=$(lsb_release -c -s)
|
|
MAINTAINER=$(dpkg-parsechangelog -S Maintainer)
|
|
GIT_TS=$(git log -1 --pretty=format:%cd --date=format:%s)
|
|
DCH_TIME=$(LANG=en_US date -d @${GIT_TS} +"%a, %d %b %Y %H:%M:%S %z")
|
|
|
|
echo "Finalize debian/changelog"
|
|
cat << EOF > debian/changelog
|
|
${PACKAGE} (${NEW_VERSION}) ${CODENAME}; urgency=medium
|
|
|
|
* New git snapshot.
|
|
|
|
-- ${MAINTAINER} ${DCH_TIME}
|
|
EOF
|
|
}
|
|
|
|
echo "Looking for previous release tag"
|
|
TAG_FORMAL="${PACKAGE}-v${SRC_VERSION}"
|
|
TAG_REF_NAME=$(git describe --match "${TAG_FORMAL}" || :)
|
|
VERSION_SYMBOL=""
|
|
if [ -n "${TAG_REF_NAME}" ]
|
|
then
|
|
if [ "${TAG_REF_NAME}" != "${TAG_FORMAL}" ]
|
|
then
|
|
VERSION_SYMBOL="+"
|
|
echo "This is an update for formal version ${VERSION}"
|
|
|
|
set_dev_version
|
|
else
|
|
echo "Build for formal version ${TAG_FORMAL}"
|
|
fi
|
|
else
|
|
VERSION_SYMBOL="~"
|
|
echo "This is an pre-release for version ${VERSION}"
|
|
|
|
set_dev_version
|
|
fi
|
|
|
|
export RUSTFLAGS="--remap-path-prefix ${HOME}=~"
|
|
|
|
dpkg-buildpackage -b -uc
|