moparisthebest
e8c711b0be
All checks were successful
moparisthebest/self-ci/pipeline/head This commit looks good
8 lines
119 B
Bash
Executable File
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
|