diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2022-08-04 17:38:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-04 12:38:40 -0400 |
| commit | 34328690dc2090fd9282337aca1df74cbf837cab (patch) | |
| tree | e2a266d39f6ab9326b10946f18c4c73a02f97185 /.github/workflows | |
| parent | e1297b1a285801f3c3ee911ddbd0afde153a8b6f (diff) | |
fix(test): output parallel test results independently (#15399)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d74e21b0c..36656d7c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -235,7 +235,7 @@ jobs: ~/.cargo/registry/index ~/.cargo/registry/cache ~/.cargo/git/db - key: 17-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }} + key: 18-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }} # In main branch, always creates fresh cache - name: Cache build output (main) @@ -251,7 +251,7 @@ jobs: !./target/*/*.zip !./target/*/*.tar.gz key: | - 17-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }} + 18-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }} # Restore cache from the latest 'main' branch build. - name: Cache build output (PR) @@ -267,7 +267,7 @@ jobs: !./target/*/*.tar.gz key: never_saved restore-keys: | - 17-cargo-target-${{ matrix.os }}-${{ matrix.profile }}- + 18-cargo-target-${{ matrix.os }}-${{ matrix.profile }}- # Don't save cache after building PRs or branches other than 'main'. - name: Skip save cache (PR) |
