-
Notifications
You must be signed in to change notification settings - Fork 87
Travis: test oldest support SDK #103
Conversation
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.
Wait, this looks like it changes the testing significantly also?
@matanlurey set these all up to run DDC back when we didn't have strong mode everywhere else. Now that we're past those days, cleaning this up substantially. |
This also drops the stages and runs the tests without build_runner right? I would instead keep the stages and run the tests with DDC only (if we want to run web tests at all). We could also add build_vm_compilers for running vm tests faster. |
I was trying to make things a bit more simple by testing in the standard
way.
Most of our other packages don't go through this dance.
…On Wed, Apr 3, 2019 at 12:25 PM Jacob MacDonald ***@***.***> wrote:
This also drops the stages and runs the tests without build_runner right?
I would instead keep the stages and run the tests with DDC only (if we
want to run web tests at all).
We could also add build_vm_compilers for running vm tests faster.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#103 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABCiu7kTYxyqOpSihyA-QUFbwrEzcjgks5vdQAvgaJpZM4cbD4X>
.
|
Standardization is good, but we should be focused on doing the best thing not whatever all our other repos are doing, and moving forward into the future. With the latest kernel stuff for everything, I get these times: time pub run build_runner test -- -p vm -p chrome (full build)note there is >5s of extra time here because pub isn't precompiling build_runner
time pub run build_runner test -- -p vm -p chrome (incremental build)
time pub run test -p vm -p chrome
The incremental builds are significantly faster - and I think on travis you would even see the initial build be faster because the user time is significantly less ( |
@jakemac53 PTAL |
Also delete the |
done! |
* Drop web tests * Drop unused files * Delete travis.sh
No description provided.