Files
spring-boot-data-geode/ci/setup.sh
John Blum b181c3353c Reconfigure the Jenkins CI build pipeline.
* Configure the buld to use the VMW provided Harbor DockerHub Proxy.
* Use pipeline.properties to parameterize the build.
* Remove Docker logins (docker.withRegistry(..) directtives in Jenkinsfile & 'docker login' command in setup.sh).
2022-05-03 17:08:03 -07:00

15 lines
479 B
Bash
Executable File

#!/bin/bash -x
# User ID 1001 is "jenkins"
# Group ID 1001 is "jenkins"
# Syntax: `chown -R userId:groupId .`
echo "Logged in as user [$USER] with home directory [$HOME] in the current working directory [$PWD]"
chown -R 1001:1001 .
mkdir -p /tmp/geode/boot/artifacts-gradle-cache
mkdir -p /tmp/geode/boot/build-gradle-cache
mkdir -p /tmp/geode/boot/docs-gradle-cache
#echo "Logging into Docker..."
#docker login --username ${DOCKER_HUB_USR} --password ${DOCKER_HUB_PSW}
exit 0