Skip to content

Commit 7a4531f

Browse files
authored
try with bash ...
1 parent 11d6ea3 commit 7a4531f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/cmake-errors.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ jobs:
104104
git clone https://github.com/mulle-core/mulle-core.git "${{steps.set-install-dir.outputs.MULLE_CORE_SRC_DIR}}"
105105
106106
- name: Configure, build and install mulle-core with CMake
107+
shell: bash
107108
working-directory: "${{steps.set-install-dir.outputs.MULLE_CORE_SRC_DIR}}"
108109
run: |
109110
cmake -B build \
@@ -113,13 +114,13 @@ jobs:
113114
-DCMAKE_BUILD_TYPE=Release
114115
cmake --build build --config Release
115116
cmake --install build --config Release
116-
shell: bash
117117
118118
- name: Clone mulle-atinit repository
119119
run: |
120120
git clone https://github.com/mulle-core/mulle-atinit.git "${{steps.set-install-dir.outputs.MULLE_ATINIT_SRC_DIR}}"
121121
122122
- name: Configure, build and install mulle-atinit with CMake
123+
shell: bash
123124
working-directory: "${{steps.set-install-dir.outputs.MULLE_ATINIT_SRC_DIR}}"
124125
run: |
125126
cmake -B build \
@@ -129,13 +130,13 @@ jobs:
129130
-DCMAKE_BUILD_TYPE=Release
130131
cmake --build build --config Release
131132
cmake --install build --config Release
132-
shell: bash
133133
134134
- name: Clone mulle-atexit repository
135135
run: |
136136
git clone https://github.com/mulle-core/mulle-atexit.git "${{steps.set-install-dir.outputs.MULLE_ATEXIT_SRC_DIR}}"
137137
138138
- name: Configure, build and install mulle-atexit with CMake
139+
shell: bash
139140
working-directory: "${{steps.set-install-dir.outputs.MULLE_ATEXIT_SRC_DIR}}"
140141
run: |
141142
cmake -B build \
@@ -145,14 +146,14 @@ jobs:
145146
-DCMAKE_BUILD_TYPE=Release
146147
cmake --build build --config Release
147148
cmake --install build --config Release
148-
shell: bash
149149
150150
- name: Install packages (Windows)
151151
if: runner.os == 'Windows'
152152
run: |
153153
choco install --no-progress ninja ${{ matrix.packages }}
154154
155155
- name: Generate project files
156+
shell: bash
156157
run: |
157158
cmake ${{ matrix.cmake-args }} \
158159
-S "${{ matrix.src-dir || '.' }}" \
@@ -163,6 +164,6 @@ jobs:
163164
env:
164165
CC: ${{ matrix.compiler }}
165166
CFLAGS: ${{ matrix.cflags }}
166-
167+
167168
- name: Compile source code
168169
run: cmake --build "${{ matrix.build-dir || '.' }}" --config "${{ matrix.build-config || 'Release' }}"

0 commit comments

Comments
 (0)