From 979cd2bee1d4e36a0fb043f228392669bea60e1e Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Tue, 2 Jun 2026 14:56:17 +0800 Subject: [PATCH] [CI] Download test files on linux --- azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f5d30968..92ba4113 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -116,6 +116,20 @@ stages: vmImage: $(imageName) container: $[ variables['containerImage'] ] steps: + - script: | + set -e -o xtrace + git submodule update --init --recursive + displayName: 'Update submodules' + - script: | + set -e -o xtrace + cd "Tests/Test Files" + echo "##vso[task.setvariable variable=lfsRev;]$(git rev-parse --verify HEAD)" + displayName: 'Generate assets-id' + - task: Cache@2 + inputs: + key: '"swc_test_files_v5_" | "$(lfsRev)"' + path: 'Tests/Test Files' + displayName: 'Cache test files' - script: | set -e -o xtrace swift --version