-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [skip e2e] effective way to use cache (#34859)
pr: #34774 issue: #34876 Signed-off-by: Yellow Shine <[email protected]>
- Loading branch information
1 parent
6986dfd
commit 0951fe4
Showing
3 changed files
with
129 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
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: Cache CCache Volumes | ||
if: ${{ inputs.kind == 'all' || inputs.kind == 'cpp' }} | ||
uses: actions/cache/restore@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/restore@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/restore@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/restore@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- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
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: 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- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters