Hi!
Currently, we probably all use UnitTesting which is great and performant. Typical CI service is Travis. Now, Travis itself is not that slow (at least often) but the test script we have to use makes it very slow. I mean the runtime is ~2min as a minimum, the actual tests take 20sec at a max.
I actually can recreate this Travis setup using docker on my local machine. I just use the travis image as a start and then run our scripts. But this is just as slow as running it on the Travis hardware. (A bit more reliable though.)
This has other drawbacks: The Travis images are huge, I mean huuuge. And they don’t publish them. So you cannot reference travis-codename:latest etc.
What I would like is a small image, maybe starting from ubuntu:latest, ideally something anyone has on their computer or the cloud anyway. But I just couldn’t get it to run. Sublime just doesn’t run in the same way, usually it can’t even install PackageControl. And I’m actually dumb when it comes to docker or linux, and we’re headless anyway so I don’t get error messages. Wouldn’t know where to look for them anyway.
Say, it was a horrible unproductive journey.
Anyone has this running. Or knows someone in DevRel?
Ideally I would say we could start as I said from a well-shared, common minimal linux distro. Maybe ubuntu:x.
We then extend and publish something like sublime-headless-unittesting:buildnumber and :latest. Because installing Sublime and PackageControl on each invocation/run is what makes everything so slow.
WDYT?