Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
786 views
in Technique[技术] by (71.8m points)

cypress - No artifacts is recorded in CircleCI

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...