summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildpipeline/Dotnet-CoreClr-Trusted-BuildTests.json2
-rw-r--r--src/syncAzure.proj3
2 files changed, 3 insertions, 2 deletions
diff --git a/buildpipeline/Dotnet-CoreClr-Trusted-BuildTests.json b/buildpipeline/Dotnet-CoreClr-Trusted-BuildTests.json
index 8e46631db0..ebb1f6e3f0 100644
--- a/buildpipeline/Dotnet-CoreClr-Trusted-BuildTests.json
+++ b/buildpipeline/Dotnet-CoreClr-Trusted-BuildTests.json
@@ -39,7 +39,7 @@
},
{
"enabled": true,
- "continueOnError": true,
+ "continueOnError": false,
"alwaysRun": false,
"displayName": "Sync test native binaries",
"timeoutInMinutes": 0,
diff --git a/src/syncAzure.proj b/src/syncAzure.proj
index aeea48de9a..14baa2622e 100644
--- a/src/syncAzure.proj
+++ b/src/syncAzure.proj
@@ -21,5 +21,6 @@
<Error Condition="'$(RuntimeId)' == '' and '$(PublishTestNativeBins)' == 'true'" Text="Missing property RuntimeId." />
</Target>
- <Target Name="Build" DependsOnTargets="ValidateRequiredProperties;DownloadBlobsFromAzureTargets" />
+ <!-- We don't want to run sync on test native binaries for Windows, since those don't get published -->
+ <Target Name="Build" DependsOnTargets="ValidateRequiredProperties;DownloadBlobsFromAzureTargets" Condition="'$(PublishTestNativeBins)' != 'true' or !$(RuntimeId.ToLower().StartsWith('win'))"/>
</Project> \ No newline at end of file