I have a pipeline with the code quality report (I can load and view this report):

But I see a message linked to this pipeline in the merge request
Failed to load codeclimate report
the tooltip is:
Base pipeline codequality artifact not found
When can I get the reason of it?
Job description:
code-quality:
stage: test
image: local-docker-hub-cache/docker:19.03.1
allow_failure: true
services:
- name: docker:19.03.1-dind
variables:
DOCKER_HOST: tcp://localhost:2375
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
script:
- iamge="local-docker-hub-cache/codeclimate:0.85.18"
- docker login ${CI_REGISTRY} -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD}
- docker pull ${iamge}
- docker run --env CODECLIMATE_CODE="$PWD" --volume ~/.m2:/home/root/.m2 --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc ${iamge} analyze -f json > codeclimate.json
artifacts:
reports:
codequality: codeclimate.json
