mirror of https://github.com/milvus-io/milvus.git
41 lines
1.1 KiB
YAML
41 lines
1.1 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: Generate CCache Hash
|
|
env:
|
|
CORE_HASH: ${{ hashFiles( 'internal/core/**/*.cpp', 'internal/core/**/*.cc', 'internal/core/**/*.c', 'internal/core/**/*.h', 'internal/core/**/*.hpp', 'internal/core/**/CMakeLists.txt') }}
|
|
run: |
|
|
echo "corehash=${CORE_HASH}" >> $GITHUB_ENV
|
|
echo "Set CCache hash to ${CORE_HASH}"
|
|
shell: bash
|
|
- name: Mac Cache CCache Volumes
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: /var/tmp/ccache
|
|
key: macos-ccache-${{ env.corehash }}
|
|
restore-keys: macos-ccache-
|
|
- name: Mac Cache Go Mod Volumes
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: macos-go-mod-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: macos-go-mod-
|
|
- name: Mac Cache Conan Packages
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: ~/.conan
|
|
key: macos-conan-${{ hashFiles('internal/core/conanfile.*') }}
|
|
restore-keys: macos-conan-
|
|
|