mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-08-02 06:12:45 +00:00
Add support for running Complement on current working directories (#1291)
This will be used in the future by Buildkite to run on CI.
This commit is contained in:
parent
6d6bb75137
commit
ec95d331a5
2 changed files with 41 additions and 0 deletions
19
build/scripts/complement.sh
Executable file
19
build/scripts/complement.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#! /bin/bash -eu
|
||||
# This script is designed for developers who want to test their Dendrite code
|
||||
# against Complement.
|
||||
#
|
||||
# It makes a Dendrite image which represents the current checkout,
|
||||
# then downloads Complement and runs it with that image.
|
||||
|
||||
# Make image
|
||||
cd `dirname $0`/../..
|
||||
docker build -t complement-dendrite -f build/scripts/Complement.Dockerfile .
|
||||
|
||||
# Download Complement
|
||||
wget https://github.com/matrix-org/complement/archive/master.tar.gz
|
||||
tar -xzf master.tar.gz
|
||||
|
||||
# Run the tests!
|
||||
cd complement-master
|
||||
COMPLEMENT_BASE_IMAGE=complement-dendrite:latest go test -v ./tests
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue