Skip to content

Commit f034d6f

Browse files
authored
install libgrpc-dev into pip devcontainers for cuopt (#685)
After NVIDIA/cuopt#939, cuopt doesn't configure without the libgrpc C++ library. Authors: - Paul Taylor (https://github.com/trxcllnt) Approvers: - James Lamb (https://github.com/jameslamb) URL: #685
1 parent a5588de commit f034d6f

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

.devcontainer/rapids.Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ RUN apt update -y \
2626
libboost-iostreams-dev \
2727
libboost-serialization-dev \
2828
libboost-program-options-dev \
29+
libgrpc-dev \
30+
libgrpc++-dev \
31+
libprotobuf-dev \
32+
protobuf-compiler-grpc \
2933
&& rm -rf /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/*;
3034

3135
ENV DEFAULT_VIRTUAL_ENV=rapids

.github/workflows/build-all-rapids-repos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
# 3. Enable debug logging to track cache misses
5454
# 4. Never fallback to locally compiling
5555
env: |
56+
PYTHON_VERSION=3.13
5657
CONDA_ENV_CREATE_QUIET=1
5758
INCLUDE_REPOS="${{ matrix.libs }}"
5859
PARALLEL_LEVEL=0

.github/workflows/test-rapids-build-times.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
# 3. Enable debug logging to track cache misses
6161
# 4. Never fallback to locally compiling
6262
env: |
63+
PYTHON_VERSION=3.13
6364
CONDA_ENV_CREATE_QUIET=1
6465
PARALLEL_LEVEL=0
6566
SCCACHE_IDLE_TIMEOUT=0

0 commit comments

Comments
 (0)