diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-08-25 06:57:47 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-08-26 22:04:09 +0100 |
commit | 3127454642dbc28ec2e2930b75524276f3386133 (patch) | |
tree | 0a4bdd2b74296db142a82c27ec87222088fadb0e /Meta/Azure/Lagom.yml | |
parent | e883792fd43be6ef0c73471a559f20ea814a8280 (diff) | |
download | serenity-3127454642dbc28ec2e2930b75524276f3386133.zip |
CI: Skip Unicode caches for Fuzzer build
There is a bit of a race here between the Fuzzer and non-Fuzzer Lagom
builds. If the Unicode caches are empty, and the Fuzzer build completes
first, then the UCD and CLDR directories will be empty or won't exist.
Skip handling the Unicode caches for this build.
Diffstat (limited to 'Meta/Azure/Lagom.yml')
-rw-r--r-- | Meta/Azure/Lagom.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Meta/Azure/Lagom.yml b/Meta/Azure/Lagom.yml index 61d1e8dea6..c5ad99586d 100644 --- a/Meta/Azure/Lagom.yml +++ b/Meta/Azure/Lagom.yml @@ -36,6 +36,10 @@ jobs: arch: 'Lagom' toolchain: '$(toolchain)' build_directory: 'Meta/Lagom/Build' + ${{ if eq(parameters.fuzzer, 'Fuzz') }}: + with_unicode_caches: false + ${{ if eq(parameters.fuzzer, 'NoFuzz') }}: + with_unicode_caches: true - script: | mkdir -p Meta/Lagom/Build |