summaryrefslogtreecommitdiff
path: root/Meta/Azure
diff options
context:
space:
mode:
Diffstat (limited to 'Meta/Azure')
-rw-r--r--Meta/Azure/Serenity.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/Meta/Azure/Serenity.yml b/Meta/Azure/Serenity.yml
index 15c9e333d9..5144ed72b3 100644
--- a/Meta/Azure/Serenity.yml
+++ b/Meta/Azure/Serenity.yml
@@ -6,6 +6,10 @@ jobs:
timeoutInMinutes: 0 # Setting to 0 means the maximum allowed timeout is used.
variables:
+ - name: LLVM_CCACHE_DIR
+ value: $(Build.SourcesDirectory)/Toolchain/.ccache
+ - name: LLVM_CCACHE_MAXSIZE
+ value: 20GB
- name: SERENITY_CCACHE_DIR
value: $(Build.SourcesDirectory)/.ccache
@@ -22,9 +26,11 @@ jobs:
arch: '${{ parameters.arch }}'
toolchain: 'clang'
build_directory: 'Build/${{ parameters.arch }}clang'
+ toolchain_ccache_path: '$(LLVM_CCACHE_DIR)'
+ toolchain_ccache_size: '$(LLVM_CCACHE_MAXSIZE)'
serenity_ccache_path: '$(SERENITY_CCACHE_DIR)'
- - script: ./Toolchain/BuildClang.sh
+ - script: ./Toolchain/BuildClang.sh --ci
displayName: Extract Toolchain
env:
TRY_USE_LOCAL_TOOLCHAIN: 'y'