how can i get the gitlab CI Jobs error log?

Viewed 1529

[**`

[when i try to build a pipeline job from the gitlab ci, i got some error , but i can't get the error logs so i can't resolve the problem, heres my sample pipeline script

stages:

  • build
  • test

variables: LANG: "en_US.UTF-8"

before_script:

  • yarn install
  • cd ios && pod install --repo-update && cd ..
  • fastlane

build: stage: build script: - fastlane test tags: - macos

test: stage: test script: - fastlane atest tags: - macos][1]

`**][2]

1 Answers

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.

Related