We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 866b84d commit 45d230bCopy full SHA for 45d230b
.github/actions/linux/build-libmongoc/action.yml
@@ -26,7 +26,15 @@ runs:
26
- name: Configure cmake
27
shell: bash
28
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
+ 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
38
env:
39
LIBMONGOC_VERSION: ${{ inputs.version }}
40
0 commit comments