Does ci.gitlab.com support hosted Java assemblies?

I am trying to understand what ci.gitlab.com provides. I would like to create a build using Gradle for my Java project and run all this on ci.gitlab.com servers.

The process of adding a runner seems to involve a localized installation of GitLab CI. General runners are available, but they seem to be oriented towards Ruby, Node, etc.

Can ci.gitlab.com be used for a fully hosted CI solution?

+4
source share
1 answer

It doesn’t matter if there are only Ruby, Node or other Runners. If they are shared participants, you can specify the image in your .gitlab-ci.yml, which runners use to run tests. See here (I wrote an example .gitlab-ci.yml):

enter image description here

Runners will pull out the correct image and run your tests on the specified image. More details here .

+1
source

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


All Articles