1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 14:57:35 +00:00

CI: Use Azure caching for Lagom build

Adds a compiler cache and a cache for the UCD files.
This commit is contained in:
Timothy Flynn 2021-08-16 19:02:27 -04:00 committed by Linus Groh
parent 831f90c9d4
commit 5eba8c948d
3 changed files with 40 additions and 2 deletions

View file

@ -9,7 +9,7 @@ steps:
- script: |
sudo apt-get purge -y clang-11
sudo apt-get update
sudo apt-get install ninja-build
sudo apt-get install ninja-build ccache
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 100
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 100
@ -21,5 +21,5 @@ steps:
- ${{ if eq(parameters.os, 'macOS') }}:
- script: |
brew install ninja wabt
brew install ninja wabt ccache
displayName: 'Install Dependencies'