fix(ci): skip max_total_test for cargotiming job #2665
Merged
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.
Release Summary:
Resolved issues:
Description of changes:
The current
cargotiming
job is always failing because of themax_total_test
:The reason is CodeBuild doesn't allow a bind to ipv4 localhost which is found by #2525. However, the previous PR forgot to skip
max_total_test
which also directly bind to ipv4 localhost address. Hence, this PR will skip such test.Call-outs:
We should figure out why we can't bind to ipv4 localhost in CodeBuild.
Testing:
CI should pass, and we need to run this in CodeBuild to see whether it works. The link to the Cargotiming job run base on this PR: https://us-west-2.console.aws.amazon.com/codesuite/codebuild/003495580562/projects/CargoTiming/build/CargoTiming%3A120a6ead-c862-41f0-a4c7-ca528572f69a/?region=us-west-2.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.