mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-02 12:48:57 +01:00
1fc50712d6
* Factor out more common code from the jenkins scripts * Fix install_and_run path * Poke jenkins * Poke jenkins
22 lines
561 B
Bash
Executable file
22 lines
561 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
: ${WORKSPACE:="$(pwd)"}
|
|
|
|
export WORKSPACE
|
|
export PYTHONDONTWRITEBYTECODE=yep
|
|
export SYNAPSE_CACHE_FACTOR=1
|
|
|
|
./jenkins/prepare_synapse.sh
|
|
./jenkins/clone.sh sytest https://github.com/matrix-org/sytest.git
|
|
./jenkins/clone.sh dendron https://github.com/matrix-org/dendron.git
|
|
./dendron/jenkins/build_dendron.sh
|
|
./sytest/jenkins/prep_sytest_for_postgres.sh
|
|
|
|
./sytest/jenkins/install_and_run.sh \
|
|
--synapse-directory $WORKSPACE \
|
|
--dendron $WORKSPACE/dendron/bin/dendron \
|
|
--pusher \
|
|
--synchrotron \
|
|
--federation-reader \
|