Mads Hartmann

Results 34 comments of Mads Hartmann

@t3443t Please fork and rewrite! :) I don't use TextMate anymore.

Currently I use Sublime Text 2. I'm not super happy about how it works but at least it's getting updated. I'll probably have a look at the progress of TextMate...

In a discussion on the Lift ML about using Pamflet for our documentation the issue of lack of searchable content came up :) It's not a deal breaker as we...

Oh yeah - I hadn't thought about that. But you're right, I don't know how to make this option apparent quickly to the users either :)

Sounds acceptable to me ;) Between this and the TOC it should be enough for people to find what they're looking for IMO

I've debugged this a bit now and it's not `objcopy` but it might be `tar`ing up the cache which takes time. Here's how I looked into it. I installed `ts`....

It appears to be `tar`ing ```sh gitpod /workspace/gitpod (mads/build-speed-installer) $ cd /tmp/build/install-installer--app.4910cf223ba02cf4d763ff5f97b1f12741cbf3f7 gitpod /tmp/build/install-installer--app.4910cf223ba02cf4d763ff5f97b1f12741cbf3f7 $ time tar cfz /tmp/cache/4910cf223ba02cf4d763ff5f97b1f12741cbf3f7.tar.gz . real 0m46.981s user 0m46.174s sys 0m1.971s ```

If we `tar` without compression (`without z`) it takes less than a second ```sh gitpod /tmp/build/install-installer--app.4910cf223ba02cf4d763ff5f97b1f12741cbf3f7 $ time tar cf /tmp/cache/4910cf223ba02cf4d763ff5f97b1f12741cbf3f7-no-compression.tar.gz . real 0m0.584s user 0m0.016s sys 0m0.568s gitpod /tmp/build/install-installer--app.4910cf223ba02cf4d763ff5f97b1f12741cbf3f7...

⬆️ I believe that because the package install/installer:app is "generic" it copies over the caches of it dependents which means they become part of the build cache of `install/installer:app`. One...

This is fixed by https://github.com/gitpod-io/gitpod/pull/13176 It went from 64s to 11s We can reduce the 11s even more not including _tests in the build cache of Leeway go packages -...