summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2022-03-23 21:15:01 +0100
committerGitHub <noreply@github.com>2022-03-23 21:15:01 +0100
commitf580134b1e4b75bc0e7579ea30cbf9f8c9ea3459 (patch)
tree993b60fa35a476fab4fdf43caf22906f3316c9a7 /.github/workflows
parentb82ded84d341cda98821592556804a529638589c (diff)
cleanup(serde_v8): streamline magic types (#14076)
Formalize magic types and how they're "transerialized", also makes U16String deserializable
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6ba3785c5..2303ebb1c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -236,7 +236,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
- key: 2-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
+ key: 3-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
# In main branch, always creates fresh cache
- name: Cache build output (main)
@@ -252,7 +252,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: |
- 2-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
+ 3-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
# Restore cache from the latest 'main' branch build.
- name: Cache build output (PR)
@@ -268,7 +268,7 @@ jobs:
!./target/*/*.tar.gz
key: never_saved
restore-keys: |
- 2-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
+ 3-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
# Don't save cache after building PRs or branches other than 'main'.
- name: Skip save cache (PR)