From 70f3f2b71d345bf20df8cb40f2fbfd9fa2c31fd6 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sat, 25 Mar 2023 03:16:40 +0100 Subject: [PATCH] ci: disable live-tests since it doesn't do anything --- .github/workflows/ci.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e63f25d2..aea50aa1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,19 +31,19 @@ jobs: - name: all features flags: --workspace --all-features include: - # not workspace because compiling examples fails for no reason in CI, + # not workspace because compiling examples fails for no reason in CI - os: windows-latest flags: name: no default features - flags: -p ethers --no-default-features + flags: --no-default-features - os: windows-latest flags: name: default features - flags: -p ethers + flags: "" - os: windows-latest flags: name: all features - flags: -p ethers --all-features + flags: --all-features steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable @@ -85,16 +85,17 @@ jobs: - name: live tests run: cargo test -p ethers-etherscan --test it - live-tests: - name: live tests - runs-on: ubuntu-latest - concurrency: live-tests-${{ github.head_ref || github.run_id }} - steps: - - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@stable - - uses: Swatinem/rust-cache@v2 - - name: live tests - run: cargo test -p ethers --all-features + # TODO: Create a new `ethers-tests` crate in the workspace for live tests. + # live-tests: + # name: live tests + # runs-on: ubuntu-latest + # concurrency: live-tests-${{ github.head_ref || github.run_id }} + # steps: + # - uses: actions/checkout@v3 + # - uses: dtolnay/rust-toolchain@stable + # - uses: Swatinem/rust-cache@v2 + # - name: live tests + # run: cargo test -p ethers-tests --all-features # TODO: [#2191](https://github.com/gakonst/ethers-rs/issues/2191) # feature-checks: