Skip to content

Commit

Permalink
expe conan_paths.cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
kerautret committed Oct 11, 2023
1 parent 938bf90 commit 1eabd7a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/buildAndDocumentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ jobs:
working-directory: ${{runner.workspace}}/build
run: |
echo "------"
ls -la ${{runner.workspace}}/build
ls -la "${{runner.workspace}}/build"
echo "------"
ls -la ${{runner.workspace}}
ls -la "${{runner.workspace}}"
echo "------"
git clone --depth 1 https://github.com/DGtal-team/DGtal.git
cd DGtal
Expand All @@ -111,9 +111,9 @@ jobs:
cmake .. -DCMAKE_BUILD_TYPE=Release $CONFIG_WINDOWS -DBUILD_EXAMPLES=false -DBUILD_TESTING=false
cmake --build . --config Release --parallel 3
echo "------"
ls -la ${{runner.workspace}}/build/DGtal/buildDGtal
ls -la "${{runner.workspace}}/build/DGtal/buildDGtal"
echo "------"
ls -la ${{runner.workspace}}/build/DGtal/buildDGtal/Release/
ls -la "${{runner.workspace}}/build/DGtal/buildDGtal/Release"
echo "------"
- name: Configure CMake (linux)
if: matrix.os == 'ubuntu-latest'
Expand All @@ -130,7 +130,7 @@ jobs:
- name: Configure CMake (windows)
if: matrix.os == 'windows-latest'
shell: bash
working-directory: ${{runner.workspace}}/build
working-directory: "${{runner.workspace}}/build"
run: cmake $GITHUB_WORKSPACE -DCMAKE_TOOLCHAIN_FILE="${{runner.workspace}}/build/DGtal/buildDGtal/conan_toolchain.cmake" -DDGtal_DIR="${{runner.workspace}}/build/DGtal/buildDGtal" -DCMAKE_BUILD_TYPE=Release -DDGTAL_RANDOMIZED_TESTING_WHITELIST="${{ steps.whitelist.outputs.WHITELIST }}"

- name: Build
Expand Down

0 comments on commit 1eabd7a

Please sign in to comment.