Some checks failed
Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
29 lines
690 B
Bash
29 lines
690 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# Automatically link to develop if we're building develop, but only if the caller
|
|
# hasn't asked us to build something else
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
if [[ $USE_CUSTOM_SDKS == false ]] && [[ $BRANCH == 'develop' ]]
|
|
then
|
|
echo "using develop dependencies for react-sdk and js-sdk"
|
|
USE_CUSTOM_SDKS=true
|
|
JS_SDK_BRANCH='develop'
|
|
fi
|
|
|
|
if [[ $USE_CUSTOM_SDKS == false ]]
|
|
then
|
|
echo "skipping js-sdk install: USE_CUSTOM_SDKS is false"
|
|
exit 0
|
|
fi
|
|
|
|
echo "Linking js-sdk"
|
|
git clone --depth 1 --branch $JS_SDK_BRANCH "$JS_SDK_REPO" js-sdk
|
|
cd js-sdk
|
|
pnpm install
|
|
cd ../
|
|
|
|
echo "Setting up element-web with js-sdk package"
|
|
pnpm link ./js-sdk
|