From 49b23d0bbe8791255c92ad2399c3919dc67344e0 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Thu, 11 Feb 2021 13:41:05 -0300 Subject: [PATCH] add rust beta to zebra-chain building job --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 165edf62..c00ddae3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,14 +52,18 @@ jobs: args: --verbose --manifest-path zebrad/Cargo.toml sync_large_checkpoints_ -- --ignored build-chain-no-features: - name: Build zebra-chain w/o features on ubuntu-latest + name: Build zebra-chain w/o features (+${{ matrix.rust }}) on ubuntu-latest timeout-minutes: 30 - runs-on: ubuntu-latest + runs-on: ubuntu-latest + strategy: + matrix: + rust: [stable, beta] + steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: ${{ matrix.rust }} override: true - name: cargo fetch uses: actions-rs/cargo@v1