Skip to content

Commit a077c2a

Browse files
Merge branch 'main' into develop
2 parents b60063a + 53f2979 commit a077c2a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,26 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v4
2929

30+
- name: Configure Conan profile
31+
run: conan profile detect
32+
3033
- name: Install Conan dependencies
3134
if: env.BUILD_TESTS == 'ON'
3235
run: |
3336
conan install . --output-folder=build --build=missing -s build_type=${{env.BUILD_TYPE}}
3437
38+
- name: Test
39+
run: |
40+
ls -la
41+
ls -la build
42+
ls -la build/build
43+
3544
- name: Configure CMake
3645
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
3746
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
3847
run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
3948
-DBUILD_TESTS=${{env.BUILD_TESTS}} \
40-
-DCMAKE_TOOLCHAIN_FILE=build/Debug/generators/conan_toolchain.cmake
49+
-DCMAKE_TOOLCHAIN_FILE=build/Release/generators/conan_toolchain.cmake
4150

4251
- name: Build
4352
# Build your program with the given configuration

0 commit comments

Comments
 (0)