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