feat: add docker image to build binaries used in tests

This commit is contained in:
adrian
2025-09-05 08:19:49 +02:00
committed by Adrian Benavides
parent fc38403d28
commit 24504d0f94
7 changed files with 106 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
if [ "$#" -lt 1 ]; then
echo "Usage: $0 test1 [test2 ...]"
exit 1
fi
for test in "$@"; do
echo "Running test: /app/substreams/$test"
tycho-protocol-sdk --package-path "/app/substreams/$test" --db-url "$DATABASE_URL"
done