62 lines
1.3 KiB
Bash
Executable File
62 lines
1.3 KiB
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
DRYRUN=
|
|
if [[ -z $BUILDKITE_BRANCH ]] || ./ci/is-pr.sh; then
|
|
DRYRUN="echo"
|
|
fi
|
|
|
|
eval "$(ci/channel-info.sh)"
|
|
|
|
if [[ $BUILDKITE_BRANCH = "$STABLE_CHANNEL" ]]; then
|
|
SNAP_CHANNEL=stable
|
|
elif [[ $BUILDKITE_BRANCH = "$EDGE_CHANNEL" ]]; then
|
|
SNAP_CHANNEL=edge
|
|
elif [[ $BUILDKITE_BRANCH = "$BETA_CHANNEL" ]]; then
|
|
SNAP_CHANNEL=beta
|
|
fi
|
|
|
|
if [[ -z $SNAP_CHANNEL ]]; then
|
|
echo Unable to determine channel to publish into, exiting.
|
|
exit 0
|
|
fi
|
|
|
|
if [[ -z $DRYRUN ]]; then
|
|
[[ -n $SNAPCRAFT_CREDENTIALS_KEY ]] || {
|
|
echo SNAPCRAFT_CREDENTIALS_KEY not defined
|
|
exit 1;
|
|
}
|
|
(
|
|
openssl aes-256-cbc -d \
|
|
-in ci/snapcraft.credentials.enc \
|
|
-out ci/snapcraft.credentials \
|
|
-k "$SNAPCRAFT_CREDENTIALS_KEY"
|
|
|
|
snapcraft login --with ci/snapcraft.credentials
|
|
) || {
|
|
rm -f ci/snapcraft.credentials;
|
|
exit 1
|
|
}
|
|
fi
|
|
|
|
set -x
|
|
|
|
echo --- checking for multilog
|
|
if [[ ! -x /usr/bin/multilog ]]; then
|
|
if [[ -z $CI ]]; then
|
|
echo "multilog not found, install with: sudo apt-get install -y daemontools"
|
|
exit 1
|
|
fi
|
|
sudo apt-get install -y daemontools
|
|
fi
|
|
|
|
echo --- build: $SNAP_CHANNEL channel
|
|
snapcraft
|
|
|
|
source ci/upload_ci_artifact.sh
|
|
upload_ci_artifact solana_*.snap
|
|
|
|
echo --- publish: $SNAP_CHANNEL channel
|
|
$DRYRUN snapcraft push solana_*.snap --release $SNAP_CHANNEL
|