element-web/scripts/jenkins.sh

32 lines
882 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2019-04-17 20:18:05 +02:00
#export NVM_DIR="$HOME/.nvm"
#[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
#nvm use 10
set -x
# check out corresponding branches of dependencies.
# clone the deps with depth 1: we know we will only ever need that one commit.
`dirname $0`/fetch-develop.deps.sh --depth 1
2017-05-17 17:17:08 +02:00
yarn install
# run the mocha tests
2019-04-17 20:22:40 +02:00
#yarn test
2017-01-23 16:42:50 +01:00
# run eslint
2019-04-17 20:22:40 +02:00
#yarn lintall -- -f checkstyle -o eslint.xml || true
2017-01-23 16:42:50 +01:00
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
# 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)
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
2016-11-11 19:23:25 +01:00
DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d