You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
#!/bin/bash |
|
set -ex |
|
|
|
########################################################### |
|
# UTILS |
|
########################################################### |
|
|
|
export DEBIAN_FRONTEND=noninteractive |
|
apt-get update |
|
apt-get install --no-install-recommends -y tzdata ca-certificates net-tools libxml2-utils git curl libudev1 libxml2-utils iptables iproute2 jq fontconfig |
|
ln -fs /usr/share/zoneinfo/UTC /etc/localtime |
|
dpkg-reconfigure --frontend noninteractive tzdata |
|
rm -rf /var/lib/apt/lists/* |
|
|
|
curl https://raw.githubusercontent.com/spring-io/concourse-java-scripts/v0.0.4/concourse-java.sh > /opt/concourse-java.sh |
|
|
|
########################################################### |
|
# JAVA |
|
########################################################### |
|
|
|
mkdir -p /opt/openjdk |
|
pushd /opt/openjdk > /dev/null |
|
for jdk in java17 java21 java22 |
|
do |
|
JDK_URL=$( /get-jdk-url.sh $jdk ) |
|
mkdir $jdk |
|
pushd $jdk > /dev/null |
|
curl -L ${JDK_URL} | tar zx --strip-components=1 |
|
test -f bin/java |
|
test -f bin/javac |
|
popd > /dev/null |
|
done |
|
popd |
|
|
|
########################################################### |
|
# GRADLE ENTERPRISE |
|
########################################################### |
|
cd / |
|
mkdir ~/.gradle |
|
echo 'systemProp.user.name=concourse' > ~/.gradle/gradle.properties
|
|
|