diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-03-07 17:38:16 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-08 14:09:08 +0100 |
commit | 36ba0a35eecec73c3347c43aeb18f3ea4849117d (patch) | |
tree | 7114364d5a3fe6728e1b169de8e74f5e1fc746d6 /Toolchain/.gitignore | |
parent | 0edae63cc006c111065bd9db2f5d9385b7511987 (diff) | |
download | serenity-36ba0a35eecec73c3347c43aeb18f3ea4849117d.zip |
Travis: Cache toolchain
This should give a significant boost to Travis speeds, because most of the
compile time is spent building the toolchain over and over again.
However, the toolchain (or libc or libm) changes only rarely,
so most rebuilds can skip this step.
The hashing has been put into a separate file to keep it
as decoupled as possible from BuiltIt.sh.
Diffstat (limited to 'Toolchain/.gitignore')
-rw-r--r-- | Toolchain/.gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Toolchain/.gitignore b/Toolchain/.gitignore index 0146895ec6..b4441196e5 100644 --- a/Toolchain/.gitignore +++ b/Toolchain/.gitignore @@ -1,3 +1,5 @@ # Created by QEMU build config-temp config.log +# For caching the entire toolchain (useful on Travis) +Cache/ |