From f7e9bfed80f74d35b8fc37336137dff80945826c Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Fri, 15 Oct 2021 20:27:29 +0100 Subject: [PATCH] fixup! Add unstable-multicall flag to CI workflows --- .github/workflows/ci-pr.yml | 4 ++-- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/coverage.yml | 2 +- .github/workflows/lint.yml | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index ce33d0c6..83b9b199 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -41,7 +41,7 @@ jobs: test-full: name: Tests (Full) env: - FLAGS: --features 'wrap_help yaml regex unstable-replace' + FLAGS: --features 'wrap_help yaml regex unstable-replace unstable-multicall' strategy: fail-fast: false matrix: @@ -80,7 +80,7 @@ jobs: - name: Default features run: cargo check --all-targets - name: All features + Debug - run: cargo check --all-targets --features "wrap_help yaml regex unstable-replace debug" + run: cargo check --all-targets --features "wrap_help yaml regex unstable-replace unstable-multicall debug" - name: No features run: cargo check --all-targets --no-default-features --features "std cargo" - name: UI Tests diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08b8df7e..c3d5f8a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,19 +97,19 @@ jobs: if: matrix.features == 'all' with: command: test - args: --target ${{ matrix.target }} --features "wrap_help yaml regex unstable-replace" + args: --target ${{ matrix.target }} --features "wrap_help yaml regex unstable-replace unstable-multicall" - name: Check debug uses: actions-rs/cargo@v1 if: matrix.features == 'all' with: command: check - args: --target ${{ matrix.target }} --features "wrap_help yaml regex unstable-replace debug" + args: --target ${{ matrix.target }} --features "wrap_help yaml regex unstable-replace unstable-multicall debug" - name: Test release uses: actions-rs/cargo@v1 if: matrix.features == 'release' with: command: test - args: --target ${{ matrix.target }} --features "wrap_help yaml regex unstable-replace" --release + args: --target ${{ matrix.target }} --features "wrap_help yaml regex unstable-replace unstable-multicall" --release nightly: name: Nightly Tests strategy: @@ -139,19 +139,19 @@ jobs: if: matrix.features == 'all' with: command: test - args: --features "wrap_help yaml regex unstable-replace" + args: --features "wrap_help yaml regex unstable-replace unstable-multicall" - name: Check debug uses: actions-rs/cargo@v1 if: matrix.features == 'all' with: command: check - args: --features "wrap_help yaml regex unstable-replace debug" + args: --features "wrap_help yaml regex unstable-replace unstable-multicall debug" - name: Test release uses: actions-rs/cargo@v1 if: matrix.features == 'release' with: command: test - args: --features "wrap_help yaml regex unstable-replace" --release + args: --features "wrap_help yaml regex unstable-replace unstable-multicall" --release wasm: name: Wasm Check runs-on: ubuntu-latest @@ -172,4 +172,4 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --target ${{ matrix.target }} --features "yaml regex unstable-replace" + args: --target ${{ matrix.target }} --features "yaml regex unstable-replace unstable-multicall" diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 6f68c286..eabb04ba 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -31,7 +31,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: llvm-cov - args: --features "wrap_help yaml regex unstable-replace" --lcov --output-path lcov.info + args: --features "wrap_help yaml regex unstable-replace unstable-multicall" --lcov --output-path lcov.info - name: Coveralls uses: coverallsapp/github-action@master with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6d8490d2..c0df22a6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,7 +32,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - args: --features "wrap_help yaml regex unstable-replace" -- -D warnings + args: --features "wrap_help yaml regex unstable-replace unstable-multicall" -- -D warnings - name: Format check uses: actions-rs/cargo@v1 with: