summaryrefslogtreecommitdiff
path: root/Meta/Azure/Caches.yml
diff options
context:
space:
mode:
Diffstat (limited to 'Meta/Azure/Caches.yml')
-rw-r--r--Meta/Azure/Caches.yml22
1 files changed, 12 insertions, 10 deletions
diff --git a/Meta/Azure/Caches.yml b/Meta/Azure/Caches.yml
index 5d1f2abfb2..55d30688f1 100644
--- a/Meta/Azure/Caches.yml
+++ b/Meta/Azure/Caches.yml
@@ -4,6 +4,7 @@ parameters:
toolchain: 'gcc'
build_directory: ''
ccache_version: 1 # Increment this number if CI has trouble with ccache.
+ with_unicode_caches: true
steps:
- script: |
@@ -32,17 +33,18 @@ steps:
path: $(CCACHE_DIR)
displayName: 'Compiler Cache'
- - task: Cache@2
- inputs:
- key: '"unicode_data" | Userland/Libraries/LibUnicode/unicode_data.cmake'
- path: $(Build.SourcesDirectory)/${{ parameters.build_directory }}/UCD
- displayName: 'UnicodeData Cache'
+ - ${{ if eq(parameters.with_unicode_caches, true) }}:
+ - task: Cache@2
+ inputs:
+ key: '"unicode_data" | Userland/Libraries/LibUnicode/unicode_data.cmake'
+ path: $(Build.SourcesDirectory)/${{ parameters.build_directory }}/UCD
+ displayName: 'UnicodeData Cache'
- - task: Cache@2
- inputs:
- key: '"unicode_locale" | Userland/Libraries/LibUnicode/unicode_data.cmake'
- path: $(Build.SourcesDirectory)/${{ parameters.build_directory }}/CLDR
- displayName: 'UnicodeLocale Cache'
+ - task: Cache@2
+ inputs:
+ key: '"unicode_locale" | Userland/Libraries/LibUnicode/unicode_data.cmake'
+ path: $(Build.SourcesDirectory)/${{ parameters.build_directory }}/CLDR
+ displayName: 'UnicodeLocale Cache'
- script: |
ccache -M 5G