Skip to content

Commit

Permalink
Don't retry provisioning
Browse files Browse the repository at this point in the history
It just doesn't work due to repos being messed up on the subsequent tries.

Skip-build: true
Skip-python-bandit: true
Skip-build-el8-rpm: true
Skip-build-el9-rpm: true
Skip-build-leap15-rpm: true
Skip-build-ubuntu20-rpm: true
Skip-test: true
Skip-PR-comments: true
PR-repos: pmdk@PR-38:11

Required-githooks: true

Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
  • Loading branch information
brianjmurrell committed Sep 18, 2024
1 parent 3578bff commit 20cdef3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ci/provisioning/post_provision_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ retry_cmd 300 clush -B -S -l root -w "$NODESTRING" -c ci_key* --dest=/tmp/
# shellcheck disable=SC2001
sanitized_commit_message="$(echo "$COMMIT_MESSAGE" | sed -e 's/\(["\$]\)/\\\1/g')"

if ! retry_cmd 2400 clush -B -S -l root -w "$NODESTRING" \
# It doesn't really work to retry this as it messes up the repos on the subsequent tries
if ! RETRY_COUNT=1 retry_cmd 2400 clush -B -S -l root -w "$NODESTRING" \
"export PS4='$PS4'
MY_UID=$(id -u)
CONFIG_POWER_ONLY=${CONFIG_POWER_ONLY:-}
Expand Down

0 comments on commit 20cdef3

Please sign in to comment.