From f7dfd2264ffca96c9e746fbf459ad8dc5acf921b Mon Sep 17 00:00:00 2001 From: Siebe Corstjens Date: Tue, 9 Jun 2026 15:48:54 +0200 Subject: [PATCH] Preserve WSDL files during extractor artifact synchronization --- tools/azdo_pipelines/run-extractor.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/azdo_pipelines/run-extractor.yaml b/tools/azdo_pipelines/run-extractor.yaml index 664b049d..a8ade51e 100644 --- a/tools/azdo_pipelines/run-extractor.yaml +++ b/tools/azdo_pipelines/run-extractor.yaml @@ -261,11 +261,11 @@ stages: Write-Information "Synchronizing artifacts..." $extractorArtifactsFolderPath = Join-Path "$(Pipeline.Workspace)" "artifacts-from-portal" ${{ parameters.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} if ("$(Agent.OS)" -like "*win*") { - & robocopy "$extractorArtifactsFolderPath" "$artifactFolderPath" /zb /mir /mt + & robocopy "$extractorArtifactsFolderPath" "$artifactFolderPath" /zb /mir /mt /XF *.wsdl if ($LASTEXITCODE -gt 7) { throw "Setting $artifactFolderPath to contents of $extractorArtifactsFolderPath failed." } } else { - & rsync --verbose --archive --delete --force --recursive "$extractorArtifactsFolderPath/" "$artifactFolderPath/" + & rsync --verbose --archive --delete --force --recursive --exclude="*.wsdl" "$extractorArtifactsFolderPath/" "$artifactFolderPath/" if ($LASTEXITCODE -ne 0) { throw "Setting $artifactFolderPath to contents of $extractorArtifactsFolderPath failed." } }