Skip to content

Commit 69d003b

Browse files
Update cmake-single-platform.yml
1 parent 086a5a3 commit 69d003b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/cmake-single-platform.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,17 @@ jobs:
3636
conan install . --output-folder=${{github.workspace}}/build --build=missing -s build_type=${{env.BUILD_TYPE}}
3737
3838
- name: Test
39-
run: ls -la
39+
run: |
40+
ls -la
41+
ls -la build
42+
ls -la build/build
4043
4144
- name: Configure CMake
4245
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
4346
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
4447
run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
4548
-DBUILD_TESTS=${{env.BUILD_TESTS}} \
46-
-DCMAKE_TOOLCHAIN_FILE=build/build/Release/generators/conan_toolchain.cmake
49+
-DCMAKE_TOOLCHAIN_FILE=build/Release/generators/conan_toolchain.cmake
4750

4851
- name: Build
4952
# Build your program with the given configuration

0 commit comments

Comments
 (0)