ci(cache): use cache for elixir in fvt workflow
This commit is contained in:
parent
7ffd184448
commit
cd2150f602
|
@ -74,13 +74,17 @@ jobs:
|
||||||
- name: load rocksdb cache
|
- name: load rocksdb cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: source/_build/default/lib/rocksdb/
|
path: |
|
||||||
key: ${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.arch }}-${{ steps.deps-refs.outputs.DEP_ROCKSDB_REF }}
|
source/_build/default/lib/rocksdb/
|
||||||
|
source/deps/rocksdb/
|
||||||
|
key: ${{ matrix.os }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ matrix.arch }}-${{ steps.deps-refs.outputs.DEP_ROCKSDB_REF }}
|
||||||
- name: load quicer cache
|
- name: load quicer cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: source/_build/default/lib/quicer/
|
path: |
|
||||||
key: ${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.arch }}-${{ steps.deps-refs.outputs.DEP_QUICER_REF }}
|
source/_build/default/lib/quicer/
|
||||||
|
source/deps/quicer/
|
||||||
|
key: ${{ matrix.os }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ matrix.arch }}-${{ steps.deps-refs.outputs.DEP_QUICER_REF }}
|
||||||
|
|
||||||
- name: make docker image
|
- name: make docker image
|
||||||
working-directory: source
|
working-directory: source
|
||||||
|
|
Loading…
Reference in New Issue