dncurrency/systest/RUNALL
dsiganos 736af8f386
Add systests to CI and fix for rocksdb mode (issue #3447) (issue #3452) (#3468)
Fix systests when running in rocksdb mode (different ledger files)
Fix for CI build of nano_node that default to dev network
Add systests into github per commit CI.
2021-09-28 16:52:58 +01:00

12 lines
132 B
Bash
Executable file

#!/bin/sh
set -e
failed=0
for script in *.sh; do
echo Running script: $script
./$script;
done
echo All systests passed.