mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
25 lines
511 B
Bash
Executable File
25 lines
511 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
run() {
|
|
echo '==============================================='
|
|
echo "${@}"
|
|
echo '==============================================='
|
|
"${@}"
|
|
}
|
|
|
|
if [ ${#} -gt 0 ]; then
|
|
run make ${@}
|
|
else
|
|
run make jdk-test
|
|
run make test
|
|
run make mode=debug test
|
|
run make process=interpret test
|
|
run make bootimage=true test
|
|
run make mode=debug bootimage=true test
|
|
run make openjdk=$JAVA_HOME test
|
|
run make tails=true continuations=true heapdump=true test
|
|
run make codegen-targets=all
|
|
fi
|