Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitlab/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,18 @@ rm "libfabric-${LIBFABRIC_VERSION#v}.tar.bz2"
$SUDO ldconfig
)

( \
cd /tmp && \
git clone --depth 1 https://github.com/kvcache-ai/Mooncake.git && \
cd Mooncake && \
$SUDO bash dependencies.sh && \
mkdir build && cd build && \
cmake .. -DBUILD_SHARED_LIBS=ON && \
make -j"$NPROC" && \
$SUDO make install && \
$SUDO ldconfig
)

( \
cd /tmp &&
git clone --depth 1 https://github.com/google/gtest-parallel.git &&
Expand Down
1 change: 1 addition & 0 deletions .gitlab/test_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ kill -s INT $telePID
./bin/nixl_gusli_test -n 4 -s 16
./bin/ucx_backend_multi
./bin/serdes_test
./bin/mooncake_backend_test

# shellcheck disable=SC2154
gtest-parallel --workers=1 --serialize_test_cases ./bin/gtest -- --min-tcp-port="$min_gtest_port" --max-tcp-port="$max_gtest_port"
Expand Down
Loading