Skip to content

Commit 45d230b

Browse files
committed
Properly multiline cmake command
1 parent 866b84d commit 45d230b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/actions/linux/build-libmongoc/action.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,15 @@ runs:
2626
- name: Configure cmake
2727
shell: bash
2828
working-directory: /tmp
29-
run: cmake -S "mongo-c-driver-${LIBMONGOC_VERSION}" -B _build -D CMAKE_BUILD_TYPE=RelWithDebInfo -D BUILD_VERSION="${LIBMONGOC_VERSION}" -D ENABLE_MONGOC=ON -D ENABLE_CLIENT_SIDE_ENCRYPTION=ON -D ENABLE_TRACING=ON
29+
run: |
30+
cmake \
31+
-S "mongo-c-driver-${LIBMONGOC_VERSION}" \
32+
-B _build \
33+
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
34+
-D BUILD_VERSION="${LIBMONGOC_VERSION}" \
35+
-D ENABLE_MONGOC=ON \
36+
-D ENABLE_CLIENT_SIDE_ENCRYPTION=ON \
37+
-D ENABLE_TRACING=ON
3038
env:
3139
LIBMONGOC_VERSION: ${{ inputs.version }}
3240

0 commit comments

Comments
 (0)