Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4b7bf63

Browse files
committedFeb 26, 2024·
Bringing back shell: bash
1 parent e7d4768 commit 4b7bf63

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎.github/workflows/cmake.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
fail-fast: false # show all errors for each platform (vs. cancel jobs on error)
2424
matrix:
2525
include:
26-
- os: ubuntu-latest
26+
- os: ubuntu-22.04
2727
cmake_args: "-DCMAKE_CXX_COMPILER=g++-11"
2828
- os: windows-2022
29-
cmake_args: "-G\"Ninja Multi-Config\" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl"
29+
cmake_args: "-G\"Ninja Multi-Config\" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl"
3030
- os: macos-13
3131
cmake_args: "-DCMAKE_BUILD_TYPE=Release"
3232

@@ -81,9 +81,11 @@ jobs:
8181
env:
8282
CMAKE_ARGS: ${{ matrix.cmake_args }}
8383
CONFIGURE_ADD_ONS_FLAG: "${{ github.event_name != 'pull_request' && '-DBYOD_BUILD_ADD_ON_MODULES=ON' || '' }}"
84+
shell: bash
8485
run: cmake -Bbuild $CONFIGURE_ADD_ONS_FLAG $CMAKE_ARGS
8586

8687
- name: Build
88+
shell: bash
8789
run: cmake --build build --config Release --parallel 4 --target BYOD_Standalone BYOD_VST3 BYOD_CLAP
8890

8991
- name: Unit Tests

0 commit comments

Comments
 (0)
Please sign in to comment.