-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Ilasm Round Trip script by adding retry logic #46765
Conversation
/azp run runtime-coreclr jitstress |
Azure Pipelines successfully started running 1 pipeline(s). |
Fix bash syntax Update bash syntax to use while true
5d78799
to
dcae07b
Compare
/azp run runtime-coreclr jitstress |
Azure Pipelines successfully started running 1 pipeline(s). |
@BruceForstall PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks great with just the one issue
break | ||
fi | ||
echo Trying again | ||
sleep 10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like ilasm_count
is never incremented.
|
||
echo EXECUTION $ilasm_count OF ILASM - FAILED with $ERRORLEVEL | ||
|
||
if [ $ilasm_count -eq 3 ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this should be a >=
instead of ==
? (is that -ge
?)
Updated with requested fix |
Fixes Issue #44139