Newbie To GitLab CI/CD - Need Advice To Deploy A Python Project Using Gitlab CI/CD
Terraform with gitlab-ci
GitLab pipeline for a Java application that uses PostgreSQL and is compiled with Maven
GitLab CI/CD example project?
Hi,
I just recently joined a team at work and one of my tasks is to support the existing Gitlab pipeline. I am new and I need to learn CI/CD quick.
I have been watching a few video and reading here and there. I was able to create the .gitlab-ci.yml file with two stages; build and test for Windows.
In my buildWindows I set script: - echo Hello World and testWindows I set script: - echo Print Completed.
I followed the Gitlab's direction to create the manual Git-Lab runner. I verified my pipeline build and test stages printed Hello World and Print Completed. It was a very elementary project but it taught me a lot with the CI/CD concept.
Now, I would like to use a docker image like python with dependencies in my .gitlab-ci.yml file to print hello world. I am not sure what to put in the before-script, script, variables, path etc... Does anyone know of video with examples on how to use docker image with gitlab CI/CD for a python project. Any help/suggestion you provided is greatly appreciated. Thank you in advance...:)