self-ci/java/run-java-all
moparisthebest e8c711b0be
All checks were successful
moparisthebest/self-ci/pipeline/head This commit looks good
Re-factor self-ci scripts
2020-11-26 20:02:28 -05:00

8 lines
119 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
for jdk in ${BUILD_JDKS:-6 7 8 9 10 11 12 13 14 15 16}
do
run-java "$jdk" "$@"
done