We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b11e3fb commit 439fcf9Copy full SHA for 439fcf9
1 file changed
.github/workflows/conan_build_and_test.yml
@@ -49,7 +49,7 @@ jobs:
49
id: cache-conan
50
uses: actions/cache@v4
51
with:
52
- path: ${{github.workspace}}/.conan2
+ path: ${{ env.HOME }}/.conan2
53
key: conan-${{ runner.os }}-${{ hashFiles('**/conanfile.py') }}
54
- if: ${{steps.cache-conan.outputs.cache-hit != 'true'}}
55
name: Create default Conan profile
@@ -58,7 +58,7 @@ jobs:
58
- name: Conan install dependencies
59
run: |
60
conan install . \
61
- --output-folder build \
+ --install-folder build \
62
-o "manapihttp/*:shared=True" \
63
-o "manapihttp/*:lib=True" \
64
-o "manapihttp/*:json_debug=False" \
0 commit comments