Files
element-web/scripts/ci_package.sh
T

18 lines
672 B
Bash
Raw Normal View History

#!/bin/bash
2020-07-17 11:54:11 +00:00
# Runs package.sh setting the version to git hashes of the element-web,
2019-04-26 11:25:41 +01:00
# react-sdk & js-sdk checkouts, for the case where these dependencies
# are git checkouts.
2019-04-26 12:22:32 +01:00
set -ex
2017-05-11 17:46:08 +01:00
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
2017-05-26 22:51:55 +01:00
# Since the deps are fetched from git, we can rev-parse
REACT_SHA=$(cd node_modules/matrix-react-sdk; git rev-parse --short=12 HEAD)
JSSDK_SHA=$(cd node_modules/matrix-js-sdk; git rev-parse --short=12 HEAD)
2016-03-11 14:30:53 +00:00
2016-02-02 17:03:48 +00:00
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
2016-03-11 14:30:53 +00:00
CI_PACKAGE=true DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d