Skip to content

Commit

Permalink
shell: bash
Browse files Browse the repository at this point in the history
  • Loading branch information
cgytrus committed Aug 2, 2023
1 parent 8909c65 commit 7b029d5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
id: win
extra_flags: >
--no-warn-unused-cli
"-DCMAKE_C_COMPILER:FILEPATH=$env:VCINSTALLDIR\Tools\Llvm\bin\clang-cl.exe"
"-DCMAKE_CXX_COMPILER:FILEPATH=$env:VCINSTALLDIR\Tools\Llvm\bin\clang-cl.exe"
"-DCMAKE_C_COMPILER:FILEPATH=$VCINSTALLDIR\Tools\Llvm\bin\clang-cl.exe"
"-DCMAKE_CXX_COMPILER:FILEPATH=$VCINSTALLDIR\Tools\Llvm\bin\clang-cl.exe"
-G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DGEODE_DEBUG=On
cli_cmd: ''
package_cmd: 'makensis -WX -V3 ./installer/windows/installer.nsi'
Expand Down Expand Up @@ -79,6 +79,7 @@ jobs:
echo "${{ github.workspace }}/cli" >> $GITHUB_PATH
- name: Configure CMake
shell: bash
run: >
cmake -B ${{ github.workspace }}/build
-DCLI_PATH="${{ github.workspace }}/cli"
Expand All @@ -87,6 +88,7 @@ jobs:
${{ matrix.config.extra_flags }}
- name: Build
shell: bash
run: |
cd ${{ github.workspace }}/build
cmake --build . --config RelWithDebInfo --parallel
Expand Down

0 comments on commit 7b029d5

Please sign in to comment.