/
Undeadguy
/
dendrite
Обзор
Документация
Войти
/
Undeadguy
/
dendrite
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
build/scripts/complement.sh
18 строк
604 B
kegsay
Update Complement to match new public API shape (#3232)
11 окт 2023, 19:41
Не верифицирован
11 окт 2023, 19:41
5888329
Код
Авторство
О чём код?
#! /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 -N 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 -count=1 ./tests ./tests/csapi