-
Notifications
You must be signed in to change notification settings - Fork 580
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
.ci/deps.sh: Fix dartsdk caching #1777
Conversation
|
Any idea why tests fail now? |
My guess is the caching of only |
a9e0986
to
6c4a37d
Compare
6c4a37d
to
55090ef
Compare
55090ef
to
a81d3c0
Compare
Always hard to prove anything with CI performance, without doing a lot of silly identical test runs, but ..
So based on one run, we should be removing the dart caching. |
Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again! |
4 similar comments
Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again! |
Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again! |
Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again! |
Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again! |
a81d3c0
to
e54258e
Compare
`-v` always fails as that is not a valid command line argument. Use existence of the unzipped files to test if it is installed. Fixes coala#1776
Rebased https://circleci.com/gh/jayvdb/coala-bears/772 and restoring the cache with dartsdk is 50s again, This time, the cached sdk Adding timing to uncached, the wget is 0.63s (real), and the unzip is 0.34s. By using But https://circleci.com/gh/jayvdb/coala-bears/777 also has a 50s cache restore step, so it is still possible to have higher cache restore times without dart sdk in the cache. And https://circleci.com/gh/coala/coala-bears/6625 had a 36s cache restore, so low cache restores are possible with the dart sdk bin in the cache. |
Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again! |
Hey! This pull request hasn't been updated for a while :/ It would be nice if we could get this going again! |
how does c16111b force an uncached build? 😕 |
Given the timings it seems it's pretty irrelevant if we have caching for this or not, right? I'm ok with either of those, caching is kind of a complexity but also helps consistency just caching everything. |
Irrelevant due to #2910 |
-v
always fails as that is not a valid command line argument.Use
--version
instead.Fixes #1776