From 3f395d46556b3268d26c5fb9a8dc54c6879a70bc Mon Sep 17 00:00:00 2001 From: Azim Afroozeh Date: Thu, 12 Sep 2024 10:50:53 +0200 Subject: [PATCH] try this --- .github/workflows/CI.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 6d520ac..3d3116f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -163,7 +163,7 @@ jobs: submodules: recursive - name: Make directory build - run: mkdir ${{github.workspace}}/build_${{ matrix.build_type }} + run: mkdir ${{github.workspace}}/example_build_${{ matrix.build_type }} - name: Install LLVM on macos if: matrix.platform == 'macos-latest' @@ -204,14 +204,14 @@ jobs: - name: Configure CMake if: matrix.platform != 'windows-latest' run: | - cmake -S ${{github.workspace}} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -B ${{github.workspace}}/build_${{ matrix.build_type }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ + cmake -S ${{github.workspace}} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -B ${{github.workspace}}/example_build_${{ matrix.build_type }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ env: CXX: ${{ matrix.cxx }} - name: Configure CMake if: matrix.platform == 'windows-latest' run: | - cmake -S ${{github.workspace}} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -B ${{github.workspace}}/build_${{ matrix.build_type }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -G "Ninja" -DCMAKE_CXX_FLAGS="-target x86_64-w64-windows-gnu" + cmake -S ${{github.workspace}} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -B ${{github.workspace}}/example_build_${{ matrix.build_type }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -G "Ninja" -DCMAKE_CXX_FLAGS="-target x86_64-w64-windows-gnu" env: CXX: ${{ matrix.cxx }}