From c57d3aeb55cf5eeecd108172f52d0439d6182e30 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 18 Aug 2024 09:26:22 +0200 Subject: [PATCH] appveyor: drop uploading artifacts Uploading artifacts sometimes results in this error: ``` Uploading artifacts... [1/1] _bld\src\curl.exe (2,022,912 bytes)...100% Error uploading artifact to the storage: Remote server returned 503: Service Temporarily Unavailable ``` Ref: https://ci.appveyor.com/project/curlorg/curl/builds/50424126/job/e4envval6xkicv1i#L123 The artifacts are also probably not useful to upload for every run. Also note that they were missing external DLL dependencies. Leave the logic there commented, to make it easy to enable as needed for debugging or testing artifacts locally. Closes #14581 --- appveyor.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index bc0cb4a152..ba6591cdf3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -211,8 +211,8 @@ skip_commits: - 'packages/**/*' - 'plan9/**/*' -artifacts: - - path: '**/curl.exe' - name: curl - - path: '**/*curl*.dll' - name: libcurl dll +#artifacts: +# - path: '**/curl.exe' +# name: curl +# - path: '**/*curl*.dll' +# name: libcurl dll -- 2.47.3