Files
spring-test-data-geode/ci/setup.sh
John Blum 091b54682f Refactor the Jenkins CI build pipeline configuration file.
Refactor and polish the Bash shell scripts invoked and usedd by the Jenkins CI build pipeline.
2022-03-17 17:22:26 -07:00

12 lines
355 B
Bash
Executable File

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