Skip to content
This repository was archived by the owner on Dec 8, 2021. It is now read-only.

Commit b3834be

Browse files
authored
ci: fix ci/kokoro/install/opensuse-tumbleweed (#162)
This build does not have a PR check (because it failed too often), so we missed it in a previous PR.
1 parent 60b0e4c commit b3834be

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

INSTALL.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,13 @@ sudo zypper refresh && \
225225
sudo zypper install -y grpc-devel
226226
```
227227

228+
The following steps will install libraries and tools in `/usr/local`. By
229+
default pkg-config does not search in these directories.
230+
231+
```bash
232+
export PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig
233+
```
234+
228235
#### googleapis
229236

230237
We need a recent version of the Google Cloud Platform proto C++ libraries:

ci/kokoro/install/Dockerfile.opensuse-tumbleweed

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ RUN zypper refresh && \
4040
zypper install -y grpc-devel
4141
# ```
4242

43+
# The following steps will install libraries and tools in `/usr/local`. By
44+
# default pkg-config does not search in these directories.
45+
46+
# ```bash
47+
ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig
48+
# ```
49+
4350
# #### googleapis
4451

4552
# We need a recent version of the Google Cloud Platform proto C++ libraries:

ci/templates/kokoro/install/Dockerfile.opensuse-tumbleweed.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,11 @@ RUN zypper refresh && \
3636
zypper install -y grpc-devel
3737
# ```
3838

39+
# The following steps will install libraries and tools in `/usr/local`. By
40+
# default pkg-config does not search in these directories.
41+
42+
# ```bash
43+
ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig
44+
# ```
45+
3946
@BUILD_AND_TEST_PROJECT_FRAGMENT@

0 commit comments

Comments
 (0)