From 366f239974d67ae2ded753397773fd186e4f59ef Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Mon, 15 Feb 2021 20:44:49 -0300 Subject: [PATCH] Resolve Windows CI disk space issues (#1726) * remove windows conditional * fully separate tests from large tests * add rust beta to new large test jobs * increase build time for windows * disable cargo increment --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bf19dbfd..7d5185001 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] rust: [stable, beta] + env: + CARGO_INCREMENTAL: 0 steps: - uses: actions/checkout@v1 @@ -42,9 +44,6 @@ 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