bd3bc5c168
* Updating the CI system with the publication of releases and binary files on github Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com> * add missed scripts * chmod +x scripts * fix download link for github * rebuilding CI scripts * small fixes * update submodule wasm tests * ci: fix merge leftovers * ci: remove gitlab-next from ci triggers * ci: fix git add in docs script * ci: use nightly instead of master for publish triggers * ci: remove sleep from gitlab config * ci: replace ':' with '-' in gitlab targets * ci: fix recursive copy in docs script
26 lines
905 B
Bash
Executable File
26 lines
905 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
case ${CI_COMMIT_REF_NAME} in
|
|
nightly|*v2.1*) export GRADE="devel";;
|
|
beta|*v2.0*) export GRADE="stable";;
|
|
stable|*v1.11*) export GRADE="stable";;
|
|
*) echo "No release" exit 0;;
|
|
esac
|
|
SNAP_PACKAGE="parity_"$VERSION"_"$BUILD_ARCH".snap"
|
|
echo "__________Create snap package__________"
|
|
echo "Release channel :" $GRADE " Branch/tag: " $CI_COMMIT_REF_NAME
|
|
snapcraft clean
|
|
echo $VERSION:$GRADE:$BUILD_ARCH
|
|
cat scripts/gitlab/templates/snapcraft.template.yaml | envsubst '$VERSION:$GRADE:$BUILD_ARCH:$CARGO_TARGET' > snapcraft.yaml
|
|
cat snapcraft.yaml
|
|
snapcraft --target-arch=$BUILD_ARCH
|
|
ls *.snap
|
|
echo "__________Post-processing snap package__________"
|
|
mkdir -p artifacts
|
|
mv -v $SNAP_PACKAGE "artifacts/"$SNAP_PACKAGE
|
|
echo "_____ Calculating checksums _____"
|
|
cd artifacts
|
|
rhash --sha256 $SNAP_PACKAGE -o $SNAP_PACKAGE".sha256"
|