Skip to content

Commit

Permalink
Update cmake-multi-platform-make-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipagaxi committed Mar 10, 2024
1 parent afebfed commit cf46f20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake-multi-platform-make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Create Build Output Directory
run: mkdir ./built-project
run: mkdir ./${{ runner.os }}_build

- name: Install development libraries (Ubuntu/Debian)
if: matrix.os == 'ubuntu-latest'
Expand All @@ -72,7 +72,7 @@ jobs:
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DCMAKE_INSTALL_PREFIX=./built-project
-DCMAKE_INSTALL_PREFIX=./${{ runner.os }}_build
-S ${{ github.workspace }}
- name: Configure CMake (on Windows)
Expand All @@ -84,7 +84,7 @@ jobs:
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DCMAKE_INSTALL_PREFIX=./built-project
-DCMAKE_INSTALL_PREFIX=./${{ runner.os }}_build
-S ${{ github.workspace }}
- name: Build (Linux)
Expand Down

0 comments on commit cf46f20

Please sign in to comment.