Skip to content

Commit

Permalink
Fix cloning in some environments
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesfernandez committed Dec 19, 2023
1 parent d9613a1 commit 07677ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ ARG GITHUB_USER=gnss-sdr
ARG GITHUB_REPO=gnss-sdr
ARG GITHUB_BRANCH=next

RUN git clone https://github.com/${GITHUB_USER}/${GITHUB_REPO}.git && \
RUN git config --global http.postBuffer 52428800 && \
git clone https://github.com/${GITHUB_USER}/${GITHUB_REPO}.git && \
cd gnss-sdr/build && git checkout ${GITHUB_BRANCH} && \
cmake -DENABLE_OSMOSDR=ON -DENABLE_FMCOMMS2=ON -DENABLE_PLUTOSDR=ON -DENABLE_AD9361=ON -DENABLE_RAW_UDP=ON -DENABLE_ZMQ=ON -DENABLE_PACKAGING=ON -DENABLE_INSTALL_TESTS=ON .. && \
make -j2 && make install && cd ../.. && rm -rf * && rm -rf /home/*
Expand Down

0 comments on commit 07677ce

Please sign in to comment.