I can't generate artifacts running my pipeline, with fail ou success. The CircleCI shows success, but anything is recorded.
executor: cypress
steps:
- add_ssh_keys:
fingerprints:
- '<fingerprint>'
- run:
name: Trust github ssh
command: echo -e "Host github.com
StrictHostKeyChecking no
" > ~/.ssh/config
- run:
name: Clone end to end tests repository
command: GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa_<key> -o IdentitiesOnly=yes' git clone [email protected]:<domain>/tests-cypress.git .
- run:
name: Install deps
command: yarn install
- run:
name: Cypress
command: yarn cypress run
- store_artifacts:
path: ~/reports
Message CircleCI:
Uploading /root/reports to ~/reports
No artifact files found at /root/reports
question from:
https://stackoverflow.com/questions/65830534/no-artifacts-is-recorded-in-circleci 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…