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
This commit is contained in:
Alfredo Garcia 2021-02-15 20:44:49 -03:00 committed by GitHub
parent cc7d5bd2ad
commit 366f239974
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -13,6 +13,8 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable, beta] rust: [stable, beta]
env:
CARGO_INCREMENTAL: 0
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@ -42,9 +44,6 @@ jobs:
args: --verbose --all args: --verbose --all
# Explicitly run any tests that are usually #[ignored], modulo ZEBRA_SKIP_NETWORK_TESTS # Explicitly run any tests that are usually #[ignored], modulo ZEBRA_SKIP_NETWORK_TESTS
- name: Run zebrad large sync 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: env:
RUST_BACKTRACE: full RUST_BACKTRACE: full
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1