Your First CI Pipeline
27%
Understanding the Execution Logs
After pushing the changes to the repository and triggering the pipeline, you can view the logs of each job by clicking on the job name. Let's take the build job as an example. The logs will show the following information:
Logs of the runner that executed the job (e.g.: docker+machine runner):
Running with gitlab-runner 17.4.0...
Preparing the "docker+machine" executor
Using Docker executor with image python:3.12 ...
Pulling docker image python:3.12 ...
Using docker image sha256:...
Preparing environment
Running on runner-...
Logs corresponding to the git clone operation and the checkout of the repository:
Getting source from Git repository
Fetching changes with git depth set to 20...
Initialized empty Git repository in /builds/learning9042634/todo0/.git/
Created fresh repository.
Checking out ec7f2f4e as detached HEAD (ref is main)...
Skipping Git submodules setup
$ git remote set-url origin "${CI_REPOSITORY_URL}"
Cloud Native CI/CD with GitLab
From Commit to Production ReadyEnroll now to unlock all content and receive all future updates for free.
