-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Noland
committed
Jun 5, 2021
1 parent
914dcc2
commit 44a2ab0
Showing
4 changed files
with
74 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env bash | ||
# This is the script run by CI. | ||
|
||
set -euxETo pipefail | ||
|
||
# Define the name of the SoftRoCE device we would like to create for integration testing. | ||
declare -r RXE_INTERFACE_NAME="rust_ibverbs" | ||
|
||
# We need to install linux-modules-extra for our current kernel or else we don't have access to the rdma_rxe module in | ||
# CI. | ||
sudo apt-get install --yes linux-modules-extra-"$(uname --kernel-release)" | ||
sudo ./scripts/make-rdma-loopback.sh "${RXE_INTERFACE_NAME}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.