2016-02-25 23:31:04 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-07-17 19:54:11 +08:00
|
|
|
# Runs package.sh setting the version to git hashes of the element-web,
|
2019-04-26 18:25:41 +08:00
|
|
|
# react-sdk & js-sdk checkouts, for the case where these dependencies
|
|
|
|
# are git checkouts.
|
2016-02-25 23:31:04 +08:00
|
|
|
|
2019-04-26 19:22:32 +08:00
|
|
|
set -ex
|
2016-02-25 23:31:04 +08:00
|
|
|
|
2020-11-24 22:05:44 +08:00
|
|
|
rm dist/element-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
2016-02-25 23:31:04 +08:00
|
|
|
|
2017-05-27 05:51:55 +08: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 22:30:53 +08:00
|
|
|
|
2016-02-03 01:03:48 +08:00
|
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
2016-03-11 22:30:53 +08:00
|
|
|
|
2020-01-16 03:19:45 +08:00
|
|
|
CI_PACKAGE=true DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d
|