I want to use gitLab-CI for a Qt-project, but i can't figure out, what I need to do so. I understand, that the whole pipeline process takes place on the CI-Server, but how do I setup the needed requirements like the qt-environment?
Solution:
Ok now I got it! You just use the Runner for it, if you do not have a Server, you can use a VM.
For GitLab.com
image: <image-name>
for.gitlab-ci.yml
apt
or some other package manager (not recommended).gitlab-ci.yml
, make sure to add a command to build/compile/run/test it.For non-GitLab.com
image: <image-name>
for.gitlab-ci.yml
apt
or some other package manager (not recommended).gitlab-ci.yml
, make sure to add a command to build/compile/run/test it.Other Helpful Comments
This is from Josh Peak's comment:
This answer is from ManuelP.'s question: