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.
12 lines
132 B
Bash
Executable file
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.
|