mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
13 lines
240 B
Bash
Executable File
13 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
make mode=debug test
|
|
make test
|
|
make process=interpret test
|
|
# bootimage and openjdk builds without openjdk-src don't work:
|
|
if [ -z "${openjdk}" ]; then
|
|
make bootimage=true test
|
|
fi
|
|
make tails=true continuations=true test
|