-
-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e278dd0
commit 482cada
Showing
5 changed files
with
177 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
#!/bin/bash | ||
|
||
## | ||
# Sonic | ||
# | ||
# Fast, lightweight and schema-less search backend | ||
# Copyright: 2023, Valerian Saliou <[email protected]> | ||
# License: Mozilla Public License v2.0 (MPL v2.0) | ||
## | ||
|
||
# Read arguments | ||
while [ "$1" != "" ]; do | ||
argument_key=`echo $1 | awk -F= '{print $1}'` | ||
argument_value=`echo $1 | awk -F= '{print $2}'` | ||
|
||
case $argument_key in | ||
-v | --version) | ||
# Notice: strip any leading 'v' to the version number | ||
SONIC_VERSION="${argument_value/v}" | ||
;; | ||
*) | ||
echo "Unknown argument received: '$argument_key'" | ||
exit 1 | ||
;; | ||
esac | ||
|
||
shift | ||
done | ||
|
||
# Ensure release version is provided | ||
if [ -z "$SONIC_VERSION" ]; then | ||
echo "No Sonic release version was provided, please provide it using '--version'" | ||
|
||
exit 1 | ||
fi | ||
|
||
# Define release pipeline | ||
function release_for_architecture { | ||
final_tar="v$SONIC_VERSION-$1-$2.tar.gz" | ||
|
||
rm -rf ./sonic/ && \ | ||
cargo build --target "$3" --release && \ | ||
mkdir ./sonic && \ | ||
cp -p "target/$3/release/sonic" ./sonic/ && \ | ||
cp -r ./config.cfg sonic/ && \ | ||
tar --owner=0 --group=0 -czvf "$final_tar" ./sonic && \ | ||
rm -r ./sonic/ | ||
release_result=$? | ||
|
||
if [ $release_result -eq 0 ]; then | ||
echo "Result: Packed architecture: $1 ($2) to file: $final_tar" | ||
fi | ||
|
||
return $release_result | ||
} | ||
|
||
# Run release tasks | ||
ABSPATH=$(cd "$(dirname "$0")"; pwd) | ||
BASE_DIR="$ABSPATH/../" | ||
|
||
rc=0 | ||
|
||
pushd "$BASE_DIR" > /dev/null | ||
echo "Executing release steps for Sonic v$SONIC_VERSION..." | ||
|
||
release_for_architecture "x86_64" "gnu" "x86_64-unknown-linux-gnu" | ||
rc=$? | ||
|
||
if [ $rc -eq 0 ]; then | ||
echo "Success: Done executing release steps for Sonic v$SONIC_VERSION" | ||
else | ||
echo "Error: Failed executing release steps for Sonic v$SONIC_VERSION" | ||
fi | ||
popd > /dev/null | ||
|
||
exit $rc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/bin/bash | ||
|
||
## | ||
# Sonic | ||
# | ||
# Fast, lightweight and schema-less search backend | ||
# Copyright: 2023, Valerian Saliou <[email protected]> | ||
# License: Mozilla Public License v2.0 (MPL v2.0) | ||
## | ||
|
||
# Read arguments | ||
while [ "$1" != "" ]; do | ||
argument_key=`echo $1 | awk -F= '{print $1}'` | ||
argument_value=`echo $1 | awk -F= '{print $2}'` | ||
|
||
case $argument_key in | ||
-v | --version) | ||
# Notice: strip any leading 'v' to the version number | ||
SONIC_VERSION="${argument_value/v}" | ||
;; | ||
*) | ||
echo "Unknown argument received: '$argument_key'" | ||
exit 1 | ||
;; | ||
esac | ||
|
||
shift | ||
done | ||
|
||
# Ensure release version is provided | ||
if [ -z "$SONIC_VERSION" ]; then | ||
echo "No Sonic release version was provided, please provide it using '--version'" | ||
|
||
exit 1 | ||
fi | ||
|
||
# Define sign pipeline | ||
function sign_for_architecture { | ||
final_tar="v$SONIC_VERSION-$1-$2.tar.gz" | ||
gpg_signer="[email protected]" | ||
|
||
gpg -u "$gpg_signer" --armor --detach-sign "$final_tar" | ||
sign_result=$? | ||
|
||
if [ $sign_result -eq 0 ]; then | ||
echo "Result: Signed architecture: $1 ($2) for file: $final_tar" | ||
fi | ||
|
||
return $sign_result | ||
} | ||
|
||
# Run sign tasks | ||
ABSPATH=$(cd "$(dirname "$0")"; pwd) | ||
BASE_DIR="$ABSPATH/../" | ||
|
||
rc=0 | ||
|
||
pushd "$BASE_DIR" > /dev/null | ||
echo "Executing sign steps for Sonic v$SONIC_VERSION..." | ||
|
||
sign_for_architecture "x86_64" "gnu" | ||
rc=$? | ||
|
||
if [ $rc -eq 0 ]; then | ||
echo "Success: Done executing sign steps for Sonic v$SONIC_VERSION" | ||
else | ||
echo "Error: Failed executing sign steps for Sonic v$SONIC_VERSION" | ||
fi | ||
popd > /dev/null | ||
|
||
exit $rc |