You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2022/10/01 15:58:46 UTC

[httpcomponents-core] 10/10: Temporarily removed windows-latest from the Github CI OS matrix due to intermittent network failures (java.io.IOException: An established connection was aborted by the software in your host machine). It is unclear whether this is a bug in the library or in the Windows JRE.

This is an automated email from the ASF dual-hosted git repository.

olegk pushed a commit to branch github_ci_migration
in repository https://gitbox.apache.org/repos/asf/httpcomponents-core.git

commit 218b0662dd2d72979888fc5eb98561fa688700bf
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Sat Oct 1 17:27:47 2022 +0200

    Temporarily removed windows-latest from the Github CI OS matrix due to intermittent network failures (java.io.IOException: An established connection was aborted by the software in your host machine). It is unclear whether this is a bug in the library or in the Windows JRE.
---
 .github/workflows/maven.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 9e64927ab..2ce1dc2d3 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -27,7 +27,8 @@ jobs:
     continue-on-error: ${{ matrix.experimental }}
     strategy:
       matrix:
-        os: [ubuntu-latest, windows-latest, macos-latest]
+        # windows-latest is not used due to intermittent network failures
+        os: [ubuntu-latest, macos-latest]
         # All LTS versions plus the current version
         java: [ 8, 11, 17 ]
         experimental: [false]