how can i get the gitlab CI Jobs error log? - Stack Overflow
How to view self-hosted runner logs in macOS?
How to make private gitlab runner display job logs and info in the console as jobs are run?
GITLAB CI where can I found logs from free runner - Stack Overflow
The Failed Jobs tab only lists a summary. Please try the Jobs tab and click on the failed job there.
If the log doesn't contain enough details, add debug logging to your .gitlab-ci.yml file and run it again.
The logs for service go to syslog or in case of systemd-based runner you can get the logs by running:
journalctl -u gitlab-runner
To tail the logs :
journalctl -u gitlab-runner | tail -100
find specific runner logs:
journalctl -u gitlab-runner | tail -100 | grep "runner-id"
As opposed to running as an invisible background service
Sorry for asking a beginner question, I want to get the real-time logs while the pipeline is running, I saw the logs was generated on the gitlab node. How can I get them, so I can read it on after script before finishing the stage on the pipeline. I want to read it on gitlab runner container running the pipeline. gitlab ce on-premise.