We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34999fc commit 4555835Copy full SHA for 4555835
1 file changed
.github/workflows/conan_build_and_test.yml
@@ -43,14 +43,14 @@ jobs:
43
run: pip install conan==2.*
44
45
- name: Conan Directory
46
- run: echo "${{ env.HOME }}/.conan2"
+ run: echo "${{ runner.home }}/.conan2"
47
48
- name: Cache Conan Dependencies
49
id: cache-conan
50
uses: actions/cache@v4
51
with:
52
- path: ${{ env.HOME }}/.conan2
53
- key: conan-${{ runner.os }}
+ path: ${{ runner.home }}/.conan2
+ key: conan-${{ runner.os }}-${{ matrix.c_compiler }}
54
- if: ${{steps.cache-conan.outputs.cache-hit != 'true'}}
55
name: Create default Conan profile
56
run: conan profile detect --force
0 commit comments