This is an automated email from the ASF dual-hosted git repository.
dill0wn pushed a commit to branch dw/8427
in repository https://gitbox.apache.org/repos/asf/allura.git
The following commit(s) were added to refs/heads/dw/8427 by this push:
new 0967ae4d6 fixup! [#8427] fix jenkins failing on forgegit
0967ae4d6 is described below
commit 0967ae4d6dd502c021763ee9e43fbac8e75d18e3
Author: Dillon Walls <[email protected]>
AuthorDate: Wed Apr 20 13:00:57 2022 -0400
fixup! [#8427] fix jenkins failing on forgegit
---
scripts/jenkins-python3.7.sh | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/scripts/jenkins-python3.7.sh b/scripts/jenkins-python3.7.sh
index eb8fdd53c..82f918b82 100755
--- a/scripts/jenkins-python3.7.sh
+++ b/scripts/jenkins-python3.7.sh
@@ -20,6 +20,9 @@
IMAGE_TAG=allura
+# this fixes the input device is not a TTY .. see
https://github.com/docker/compose/issues/5696
+COMPOSE_INTERACTIVE_NO_CLI=1
+
echo
echo
"============================================================================="
echo "Jenkins Host Info:"
@@ -27,6 +30,10 @@ echo
"==========================================================================
echo -n 'cpu count: '; grep -c processor /proc/cpuinfo
echo hostname: `hostname --short`
echo NODE_NAME: $NODE_NAME
+echo docker:
+docker version
+echo docker compose:
+docker-compose version
echo path: $PATH
echo workspace: $WORKSPACE
echo jenkins_home: $JENKINS_HOME
@@ -55,6 +62,10 @@ echo "Setup: venv, pip, pysvn, ./rebuild-all.sh, npm, etc."
echo
"============================================================================="
docker-compose run web scripts/init-docker-dev.sh
+echo
+echo
"============================================================================="
+echo "Starting up docker containers"
+echo
"============================================================================="
docker-compose up -d web
echo