From b4f92adc40be2875412f95bfb0564d7d0f699b87 Mon Sep 17 00:00:00 2001 From: teor Date: Wed, 21 Oct 2020 08:55:47 +1000 Subject: [PATCH] Disable sync tests on Windows CI --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3160c0a2..f5ccaf50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,9 +25,10 @@ jobs: - name: Install LLVM on Windows if: matrix.os == 'windows-latest' run: choco install llvm -y - - name: Skip network tests on Ubuntu + - name: Skip network tests on Ubuntu and Windows # Ubuntu runners don't have network or DNS configured during test steps - if: matrix.os == 'ubuntu-latest' + # Windows runners have an unreliable network + if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' run: echo "ZEBRA_SKIP_NETWORK_TESTS=1" >> $GITHUB_ENV - name: Run tests env: