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
4 changes: 4 additions & 0 deletions .circleci/generate_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ EOF
- run: # test ./$module_name/go.mod
name: Test $module_name
command: |
if [ "$module_name" == "valkeyrdma" ]; then
sudo apt-get update -y
sudo apt-get install -y libibverbs-dev librdmacm-dev rdma-core
fi
cd "\$CIRCLE_WORKING_DIRECTORY/$module_name"
list=\$(go list ./... | circleci tests split --split-by=timings)
echo "Test Packages: \$list"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ jobs:
./dockertest.sh -run 'Integration' $list && break
done
else
if [ "$module_path" == "./valkeyrdma" ]; then
sudo apt-get update -y
sudo apt-get install -y libibverbs-dev librdmacm-dev rdma-core
fi
cd $module_path
list=$(go list ./...)
echo "Test Packages: $list"
Expand Down
Loading
Loading