mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
2b6e6f4040
issue: https://github.com/milvus-io/milvus/issues/34876 Signed-off-by: Yellow Shine <sammy.huang@zilliz.com>
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
name: 'Milvus Cache'
|
|
description: ''
|
|
inputs:
|
|
os:
|
|
description: 'OS name'
|
|
required: true
|
|
default: 'ubuntu20.04'
|
|
kind:
|
|
description: 'Cache kind'
|
|
required: false
|
|
default: 'all'
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Cache CCache Volumes
|
|
if: ${{ inputs.kind == 'all' || inputs.kind == 'cpp' }}
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: .docker/amd64-${{ inputs.os }}-ccache
|
|
key: ${{ inputs.os }}-ccache-${{ env.corehash }}
|
|
restore-keys: ${{ inputs.os }}-ccache-
|
|
- name: Cache Conan Packages
|
|
if: ${{ inputs.kind == 'all' || inputs.kind == 'cpp' }}
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: .docker/amd64-${{ inputs.os }}-conan
|
|
key: ${{ inputs.os }}-conan-${{ hashFiles('internal/core/conanfile.*') }}
|
|
restore-keys: ${{ inputs.os }}-conan-
|
|
- name: Cache Third Party
|
|
if: ${{ inputs.kind == 'all' || inputs.kind == 'thirdparty' }}
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: .docker/thirdparty
|
|
key: ${{ inputs.os }}-thirdparty-${{ hashFiles('internal/core/thirdparty/**') }}
|
|
restore-keys: ${{ inputs.os }}-thirdparty-
|
|
- name: Cache Go Mod Volumes
|
|
if: ${{ inputs.kind == 'all' || inputs.kind == 'go' }}
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: .docker/amd64-${{ inputs.os }}-go-mod
|
|
key: ${{ inputs.os }}-go-mod-${{ hashFiles('go.sum, */go.sum') }}
|
|
restore-keys: ${{ inputs.os }}-go-mod-
|