diff options
author | Eric Engestrom <[email protected]> | 2019-02-12 16:59:27 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-02-19 10:09:51 +0000 |
commit | 23b485c920a64ba302a908e7b13c89bc7a76565e (patch) | |
tree | eda26fae8b24edfee1b38c6511c801b90f55c311 /.gitlab-ci | |
parent | dbe3af67a47ba929c89e9482fbc9396fc1114d93 (diff) |
gitlab-ci: use ccache to speed up builds
Signed-off-by: Eric Engestrom <[email protected]>
Diffstat (limited to '.gitlab-ci')
-rw-r--r-- | .gitlab-ci/Dockerfile.ubuntu | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci/Dockerfile.ubuntu b/.gitlab-ci/Dockerfile.ubuntu index dff5dccba37..77c15216951 100644 --- a/.gitlab-ci/Dockerfile.ubuntu +++ b/.gitlab-ci/Dockerfile.ubuntu @@ -158,5 +158,8 @@ RUN pip2 install 'scons>=2.4' RUN pip2 install mako RUN pip3 install mako +# Use ccache to speed up builds +RUN apt-get install -y ccache + # Cleanup workdir WORKDIR / |