-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Resolve a couple of Github Action CI annoyances: #4413
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Set "fail-fast: false" so that multiple jobs in one workflow can finish independently. By default, if one job fails, other running jobs will be aborted, even if the other jobs are working fine and are almost done. This leads to wasted time and resources if the failure is, for example, OS specific, or due to a flaky unit test, and the failed job needs to be re-run, because all the jobs end up re-running. * Put conditions back into the windows.yml job (manual, and for a specific branch name and that job). This prevents Github Actions from sending "No jobs were run" failure emails on every commit.
Looks good. Thanks. |
drlongle
approved these changes
Feb 8, 2023
* upstream/develop: Update dependency: grpc (XRPLF#4407) Introduce min/max observers for Number Optimize uint128_t division by 10 within Number.cpp Replace Number division algorithm Include rounding mode in XRPAmount to STAmount conversion. Remove undefined behavior * Taking the negative of a signed negative is UB, but taking the negative of an unsigned is not. Silence warnings Introduce rounding modes for Number: Use Number for IOUAmount and STAmount arithmetic Add tests Add implicit conversion from STAmount to Number Add clip Add conversions between Number, XRPAmount and int64_t AMM Add Number class and associated algorithms
* upstream/develop: Update documented pathfinding configuration defaults: (XRPLF#4409)
* upstream/develop: Rename to fixNonFungibleTokensV1_2 and some cosmetic changes (XRPLF#4419) Only account specified as destination can settle through brokerage: (XRPLF#4399) Prevent brokered sale of NFToken to owner: (XRPLF#4403) Fix 3 issues around NFToken offer acceptance (XRPLF#4380) Allow NFT to be burned when number of offers is greater than 500 (XRPLF#4346) Add fixUnburnableNFToken feature (XRPLF#4391) Change default vote on fixUniversalNumber from yes to no (XRPLF#4414)
thejohnfreeman
approved these changes
Feb 15, 2023
intelliot
approved these changes
Feb 15, 2023
Merging into |
ximinez
added a commit
to ximinez/rippled
that referenced
this pull request
Feb 17, 2023
* upstream/develop: Resolve a couple of Github Action CI annoyances: (XRPLF#4413)
ximinez
added a commit
to ximinez/rippled
that referenced
this pull request
Feb 17, 2023
* upstream/develop: Resolve a couple of Github Action CI annoyances: (XRPLF#4413)
ximinez
added a commit
to ximinez/rippled
that referenced
this pull request
Feb 17, 2023
* upstream/develop: Resolve a couple of Github Action CI annoyances: (XRPLF#4413)
ximinez
added a commit
to ximinez/rippled
that referenced
this pull request
Feb 17, 2023
* upstream/develop: Resolve a couple of Github Action CI annoyances: (XRPLF#4413)
ximinez
added a commit
to ximinez/rippled
that referenced
this pull request
Feb 17, 2023
* upstream/develop: Resolve a couple of Github Action CI annoyances: (XRPLF#4413)
ximinez
added a commit
to ximinez/rippled
that referenced
this pull request
Feb 17, 2023
…ctionality * upstream/develop: Resolve a couple of Github Action CI annoyances: (XRPLF#4413)
ximinez
added a commit
to ximinez/rippled
that referenced
this pull request
Feb 17, 2023
…tpage * upstream/develop: Resolve a couple of Github Action CI annoyances: (XRPLF#4413)
legleux
pushed a commit
to legleux/rippled
that referenced
this pull request
Feb 22, 2023
* Set "fail-fast: false" so that multiple jobs in one workflow can finish independently. By default, if one job fails, other running jobs will be aborted, even if the other jobs are working fine and are almost done. This leads to wasted time and resources if the failure is, for example, OS specific, or due to a flaky unit test, and the failed job needs to be re-run, because all the jobs end up re-running. * Put conditions back into the windows.yml job (manual, and for a specific branch name and that job). This prevents Github Actions from sending "No jobs were run" failure emails on every commit.
dangell7
pushed a commit
to Transia-RnD/rippled
that referenced
this pull request
Mar 5, 2023
* Set "fail-fast: false" so that multiple jobs in one workflow can finish independently. By default, if one job fails, other running jobs will be aborted, even if the other jobs are working fine and are almost done. This leads to wasted time and resources if the failure is, for example, OS specific, or due to a flaky unit test, and the failed job needs to be re-run, because all the jobs end up re-running. * Put conditions back into the windows.yml job (manual, and for a specific branch name and that job). This prevents Github Actions from sending "No jobs were run" failure emails on every commit.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
High Level Overview of Change
This PR fixes a couple of small issues that have been irking me about our Github Actions CI workflows.
fail-fast: false
so that multiple jobs in one workflow can finish independently.on:
clause. ExampleNote that I expect all the CI jobs to fail on this PR because of a dependency issue, addressed in #4407. When they do, note that both of the
nix
jobs do fail independently. Just to confirm that I didn't break anything, here is a successful job resulting from merging the #4407 fix.Type of Change