Skip to content

Commit

Permalink
Removed cache from some jobs.
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandr <a-p-petrosyan@yandex.ru>
  • Loading branch information
appetrosyan committed Dec 3, 2021
1 parent cc5ddeb commit c52f7b8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/iroha2-dev-pr-unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
${{ env.CARGO_HOME }}
target/
key: iroha2-rust-test-${{ hashFiles('Cargo.lock') }}
restore-keys: |
iroha2-rust-test
# - uses: actions/cache@v2
# with:
# path: |
# ${{ env.CARGO_HOME }}
# target/
# key: iroha2-rust-test-${{ hashFiles('Cargo.lock') }}
# restore-keys: |
# iroha2-rust-test
- name: Run tests
run: cargo test -p iroha_client --tests unstable_network --quiet
32 changes: 16 additions & 16 deletions .github/workflows/iroha2-dev-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
${{ env.CARGO_HOME }}
target/
key: iroha2-rust-test-${{ hashFiles('Cargo.lock') }}
restore-keys: |
iroha2-rust-test
# - uses: actions/cache@v2
# with:
# path: |
# ${{ env.CARGO_HOME }}
# target/
# key: iroha2-rust-test-${{ hashFiles('Cargo.lock') }}
# restore-keys: |
# iroha2-rust-test
- name: Run tests
run: mold -run cargo test --quiet --workspace --no-fail-fast -- --skip unstable_network --test-threads 2
env:
Expand All @@ -53,14 +53,14 @@ jobs:
image: 7272721/i2-ci:latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
${{ env.CARGO_HOME }}
target/
key: iroha2-rust-test-coverage-${{ hashFiles('Cargo.lock') }}
restore-keys: |
iroha2-rust-test-coverage
# - uses: actions/cache@v2
# with:
# path: |
# ${{ env.CARGO_HOME }}
# target/
# key: iroha2-rust-test-coverage-${{ hashFiles('Cargo.lock') }}
# restore-keys: |
# iroha2-rust-test-coverage
- name: Run tests
run: mold -run cargo test --quiet --workspace --no-fail-fast -- --skip unstable_network --test-threads 2 || true
env:
Expand Down

0 comments on commit c52f7b8

Please sign in to comment.