Add CI build shell scripts.

This commit is contained in:
John Blum
2022-05-04 11:08:34 -07:00
parent 51510caa69
commit db13f435e4
6 changed files with 68 additions and 0 deletions

11
ci/setup.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/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