Run CI with temporary files on a ramdisk#2254
Merged
cyli merged 1 commit intomoby:masterfrom Jun 14, 2017
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2254 +/- ##
=========================================
+ Coverage 60.31% 60.7% +0.39%
=========================================
Files 124 124
Lines 20263 20263
=========================================
+ Hits 12221 12301 +80
+ Misses 6654 6578 -76
+ Partials 1388 1384 -4 |
This sets up a tmpfs mount to be used for temporary files created by tests. If this works, hopefully it will fix the excessive I/O latencies that are blocking tests for long periods and causing them to fail. As a side effect, this also stores temporary compilation artifacts on tmpfs. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
Collaborator
Author
|
Well, it seems to work. I ran CI 5 times or so. Should we merge this and see what happens? |
Contributor
|
LGTM! 👍 |
13 tasks
This file contains hidden or 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
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.
This sets up a tmpfs mount to be used for temporary files created by tests.
If this works, hopefully it will fix the excessive I/O latencies that
are blocking tests for long periods and causing them to fail.
As a side effect, this also stores temporary compilation artifacts on
tmpfs.