Skip to content

Commit 8d79167

Browse files
committed
List contents of /tmp
1 parent 0ad8a49 commit 8d79167

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/system-libs.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,35 @@ jobs:
1919
with:
2020
submodules: true
2121

22-
- name: Install libmongoc as system library
22+
- name: Download libmongoc
2323
shell: bash
2424
working-directory: /tmp
2525
run: wget "https://github.com/mongodb/mongo-c-driver/archive/refs/tags/${LIBMONGOC_VERSION}.tar.gz" --output-document="mongo-c-driver.tar.gz"
2626

27-
- name: Install libmongoc as system library
27+
- name: Extract libmongoc
2828
shell: bash
2929
working-directory: /tmp
3030
run: tar xf "mongo-c-driver.tar.gz"
3131

32-
- name: Install libmongoc as system library
32+
- name: List directories
33+
shell: bash
34+
working-directory: /tmp
35+
run: ls -l
36+
37+
- name: Configure cmake
3338
shell: bash
3439
working-directory: /tmp
3540
run: cmake -S mongo-c-driver -B _build \
3641
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
3742
-D BUILD_VERSION="${LIBMONGOC_VERSION}" \
3843
-D ENABLE_MONGOC=ON
3944

40-
- name: Install libmongoc as system library
45+
- name: Build libmongoc
4146
shell: bash
4247
working-directory: /tmp
4348
run: cmake --build _build --config RelWithDebInfo --parallel
4449

45-
- name: Install libmongoc as system library
50+
- name: Install libmongoc
4651
shell: bash
4752
working-directory: /tmp
4853
run: cmake --install _build --prefix "~/.local" --config RelWithDebInfo

0 commit comments

Comments
 (0)