Skip to content

Commit 0baf00d

Browse files
committed
FIX | workflow
1 parent 65ed6f4 commit 0baf00d

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

.github/workflows/conan_build_and_test.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,14 @@ jobs:
4747

4848
- name: Cache Conan Dependencies
4949
id: cache-conan
50-
uses: actions/cache@v4
50+
uses: actions/cache/restore@v4
5151
with:
5252
path: ${{ env.HOME }}/.conan2
53-
key: conan-${{ runner.os }}-${{ hashFiles('**/conanfile.py') }}
53+
key: conan-${{ runner.os }}
5454
- if: ${{steps.cache-conan.outputs.cache-hit != 'true'}}
5555
name: Create default Conan profile
5656
run: conan profile detect --force
5757

58-
- name: Debug Information
59-
run: pwd
60-
61-
62-
- name: Debug Information 2
63-
run: ls -lh
64-
6558
- name: Conan install dependencies
6659
run: |
6760
conan install . \
@@ -90,7 +83,7 @@ jobs:
9083
run: cmake --preset conan-release -DMANAPIHTTP_DISABLE_TRACE_HARD=ON -DMANAPIHTTP_STD_BACKTRACE_DEPENDENCY=OFF
9184

9285
- name: Build
93-
run: cmake --build build --config Release
86+
run: cmake --build build/Release
9487

9588
- name: Run unit tests
9689
run: ctest --output-on-failure -C Release

0 commit comments

Comments
 (0)