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