From 6fd5b2db304cfc22c3a47f820aa322b9ea2d5289 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Fri, 29 Jan 2021 19:29:32 -0300 Subject: [PATCH] Temporally disable sync_large_checkpoints on Windows (#1658) * temporally disable sync_large_checkpoints from CI * Allow large checkpoint sync tests only on ubuntu and macOS Co-authored-by: Deirdre Connolly --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 530d8828..f20af4c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,9 @@ jobs: args: --verbose --all # Explicitly run any tests that are usually #[ignored], modulo ZEBRA_SKIP_NETWORK_TESTS - name: Run zebrad large sync tests + # There is a compiler issue when building the acceptance integration + # test binary, this disables these tests on Windows for now. + if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest' env: RUST_BACKTRACE: full uses: actions-rs/cargo@v1