ci: disable live-tests since it doesn't do anything
This commit is contained in:
parent
42dfe5f673
commit
70f3f2b71d
|
@ -31,19 +31,19 @@ jobs:
|
||||||
- name: all features
|
- name: all features
|
||||||
flags: --workspace --all-features
|
flags: --workspace --all-features
|
||||||
include:
|
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
|
- os: windows-latest
|
||||||
flags:
|
flags:
|
||||||
name: no default features
|
name: no default features
|
||||||
flags: -p ethers --no-default-features
|
flags: --no-default-features
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
flags:
|
flags:
|
||||||
name: default features
|
name: default features
|
||||||
flags: -p ethers
|
flags: ""
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
flags:
|
flags:
|
||||||
name: all features
|
name: all features
|
||||||
flags: -p ethers --all-features
|
flags: --all-features
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: dtolnay/rust-toolchain@stable
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
|
@ -85,16 +85,17 @@ jobs:
|
||||||
- name: live tests
|
- name: live tests
|
||||||
run: cargo test -p ethers-etherscan --test it
|
run: cargo test -p ethers-etherscan --test it
|
||||||
|
|
||||||
live-tests:
|
# TODO: Create a new `ethers-tests` crate in the workspace for live tests.
|
||||||
name: live tests
|
# live-tests:
|
||||||
runs-on: ubuntu-latest
|
# name: live tests
|
||||||
concurrency: live-tests-${{ github.head_ref || github.run_id }}
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# concurrency: live-tests-${{ github.head_ref || github.run_id }}
|
||||||
- uses: actions/checkout@v3
|
# steps:
|
||||||
- uses: dtolnay/rust-toolchain@stable
|
# - uses: actions/checkout@v3
|
||||||
- uses: Swatinem/rust-cache@v2
|
# - uses: dtolnay/rust-toolchain@stable
|
||||||
- name: live tests
|
# - uses: Swatinem/rust-cache@v2
|
||||||
run: cargo test -p ethers --all-features
|
# - name: live tests
|
||||||
|
# run: cargo test -p ethers-tests --all-features
|
||||||
|
|
||||||
# TODO: [#2191](https://github.com/gakonst/ethers-rs/issues/2191)
|
# TODO: [#2191](https://github.com/gakonst/ethers-rs/issues/2191)
|
||||||
# feature-checks:
|
# feature-checks:
|
||||||
|
|
Loading…
Reference in New Issue