Merge pull request #2387 from openmv/ci_cache_fix

github: Fix cache key.
This commit is contained in:
Ibrahim Abdelkader 2024-08-23 00:44:16 +03:00 committed by GitHub
commit a617dab56b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ jobs:
path: | path: |
~/cache/gcc ~/cache/gcc
~/cache/llvm ~/cache/llvm
key: 'toolchain' key: 'toolchain_gcc-13.2.rel1_llvm-18.1.3'
- name: '🐍 Install Python' - name: '🐍 Install Python'
uses: actions/setup-python@v5 uses: actions/setup-python@v5
@ -91,8 +91,10 @@ jobs:
uses: actions/cache@v4.0.2 uses: actions/cache@v4.0.2
id: cache id: cache
with: with:
path: ~/cache/gcc path: |
key: 'arm-gnu-toolchain-13.2.rel1' ~/cache/gcc
~/cache/llvm
key: 'toolchain_gcc-13.2.rel1_llvm-18.1.3'
- name: '🐍 Install Python' - name: '🐍 Install Python'
uses: actions/setup-python@v5 uses: actions/setup-python@v5