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).
This commit is contained in:
John Blum
2022-05-03 17:08:03 -07:00
parent cc55e94754
commit 4ec212b402
3 changed files with 63 additions and 57 deletions

View File

@@ -9,6 +9,6 @@ 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}
#echo "Logging into Docker..."
#docker login --username ${DOCKER_HUB_USR} --password ${DOCKER_HUB_PSW}
exit 0