Hey everyone,
I am currently setting up automated website builds for Apache Calcite.
We are currently using docker-compose and the jekyll image to generate
the assets on our machines locally:
https://github.com/apache/calcite/blob/test-site/site/docker-compose.yml
This works well and `docker-compose run ` command returns after the
generation is completed.
The problem is that when we use `docker-compose run ...` to generate the
assets on Jenkins, it never returns. We are using this Jenkinsfile:
https://github.com/apache/calcite/blob/test-site/Jenkinsfile
The logs showing the generating being successful, but not terminating
and manually aborted are here:
https://builds.apache.org/job/Calcite-Site/9/console
I have tried using the bash and sh interpreters when running
`docker-compose run`, but it does not make any difference.
Does anyone know what might be the cause?
Francis