Skip to content

Commit 30eb567

Browse files
velichkovptrkrysik
authored andcommitted
travis: Add /usr/local/lib/python3/dist-packages/ to PYTHONPATH
and run ldconfig after installing gr-iqbal and gr-osmosdr. Due to debian-python-install patch [1] the OOT packages are installed in /usr/local/lib/python3/dist-packages but this path is not in the python3 default search paths (sys.path) and because of this importing OOT modules fails. [1] https://salsa.debian.org/bottoms/pkg-gnuradio/blob/25e1de07/debian/patches/debian-python-install Change-Id: I260c82d1a53dab85f7aac86f23e61309d8841255
1 parent 65f95f5 commit 30eb567

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

tests/dockerfiles/Debian_testing.docker

+5-3
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,21 @@ RUN git clone --branch maint-3.8 --recurse-submodules https://github.com/velichk
2626
mkdir build && \
2727
cd build && \
2828
cmake .. && \
29-
make -j $(nproc) install
29+
make -j $(nproc) install && \
30+
ldconfig
3031

3132
RUN git clone --branch maint-3.8 https://github.com/velichkov/gr-osmosdr && \
3233
cd gr-osmosdr && \
3334
mkdir build && \
3435
cd build && \
3536
cmake .. && \
36-
make -j $(nproc) install
37+
make -j $(nproc) install && \
38+
ldconfig
3739

3840
RUN mkdir /src/build
3941
WORKDIR /src/build
4042

41-
RUN cmake .. && \
43+
RUN PYTHONPATH=/usr/local/lib/python3/dist-packages/:$PYTHONPATH cmake .. && \
4244
# The parallel build sometimes fails when the .grc_gnuradio
4345
# and .gnuradio directories do not exist
4446
mkdir $HOME/.grc_gnuradio/ $HOME/.gnuradio/ && \

tests/dockerfiles/Kali.docker

+5-3
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,20 @@ RUN git clone --branch maint-3.8 --recurse-submodules https://github.com/velichk
2626
mkdir build && \
2727
cd build && \
2828
cmake .. && \
29-
make -j $(nproc) install
29+
make -j $(nproc) install && \
30+
ldconfig
3031

3132
RUN git clone --branch maint-3.8 https://github.com/velichkov/gr-osmosdr && \
3233
cd gr-osmosdr && \
3334
mkdir build && \
3435
cd build && \
3536
cmake .. && \
36-
make -j $(nproc) install
37+
make -j $(nproc) install && \
38+
ldconfig
3739

3840
RUN mkdir /src/build
3941
WORKDIR /src/build
40-
RUN cmake .. && \
42+
RUN PYTHONPATH=/usr/local/lib/python3/dist-packages/:$PYTHONPATH cmake .. && \
4143
# The parallel build sometimes fails when the .grc_gnuradio
4244
# and .gnuradio directories do not exist
4345
mkdir $HOME/.grc_gnuradio/ $HOME/.gnuradio/ && \

0 commit comments

Comments
 (0)