Deploy java application with gitlab ci

I have a very simple gitlab ci installation that creates a Java application with maven. In the last step, I just want to start the application launch using java -jar app.jar &cmd.

The problem is that the process does not exit on the gitlab build page and will wait there until the timeout. Am I using it incorrectly? Or any suggestions for a better implementation? Many thanks.

+4
source share

Source: https://habr.com/ru/post/1624033/


All Articles