Skip to content

Commit

Permalink
Bringing back shell: bash
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Feb 26, 2024
1 parent e7d4768 commit 4b7bf63
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
fail-fast: false # show all errors for each platform (vs. cancel jobs on error)
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-22.04
cmake_args: "-DCMAKE_CXX_COMPILER=g++-11"
- os: windows-2022
cmake_args: "-G\"Ninja Multi-Config\" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl"
cmake_args: "-G\"Ninja Multi-Config\" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl"
- os: macos-13
cmake_args: "-DCMAKE_BUILD_TYPE=Release"

Expand Down Expand Up @@ -81,9 +81,11 @@ jobs:
env:
CMAKE_ARGS: ${{ matrix.cmake_args }}
CONFIGURE_ADD_ONS_FLAG: "${{ github.event_name != 'pull_request' && '-DBYOD_BUILD_ADD_ON_MODULES=ON' || '' }}"
shell: bash
run: cmake -Bbuild $CONFIGURE_ADD_ONS_FLAG $CMAKE_ARGS

- name: Build
shell: bash
run: cmake --build build --config Release --parallel 4 --target BYOD_Standalone BYOD_VST3 BYOD_CLAP

- name: Unit Tests
Expand Down

0 comments on commit 4b7bf63

Please sign in to comment.