Actions
action #92161
closedCI: build-docs-nightly broken since May 3
Description
#!/bin/bash -eo pipefail
set -x
if [ -z "$CIRCLE_WORKFLOW_ID" ]; then
bash .circleci/build_cache.sh
else
sudo rpm -i -f $(find /var/cache/zypp/packages/ | grep '.rpm$')
fi
+ '[' -z 00d8b46a-5e35-4c60-8c98-8de3353c5b8e ']'
++ grep '.rpm$'
++ find /var/cache/zypp/packages/
+ sudo rpm -i -f
rpm: no packages given for install
Exited with code exit status 1
CircleCI received exit code 1
Updated by tinita over 3 years ago
One observation is that this job has no store_artifacts
step like our other jobs. With this we could have seen when the rpm list became empty.
Updated by okurz over 3 years ago
- Status changed from New to Resolved
- Assignee set to okurz
andriinikitin helped. AFAIK he simply retriggered the failed job. What that should have suddenly helped I don't know. https://app.circleci.com/pipelines/github/os-autoinst/openQA?branch=master shows that the pipeline is ok again for some days. I don't think we have found a proper fix, just the workaround to retrigger. Would be good to improve for the future but as long as no one else has an idea I don't know what else to do than just to resolve the ticket.
Updated by tinita over 3 years ago
Merged PR to store artifacts: https://github.com/os-autoinst/openQA/pull/3891
Actions