Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • o-ran-sc/master - development builds, pushed automatically by Jenkins (like a Maven snapshot repository)
  • o-ran-sc/staging - release candidate builds, pushed automatically by Jenkins
  • o-ran-sc/release - released versions, created manually by the Linux Foundation release engineering team.

Files can be downloaded and installed manually.  For example, here's how to install a recent version of the RMr library in a Dockerfile:

Code Block
# Install RMr using debian package hosted at packagecloud.io
ARG RMR_VER=1.0.43
RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/master/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/master/packages/debian/stretch/rmr-dev_${RMR_VER}_amd64.deb/download.deb
RUN dpkg -i rmr_${RMR_VER}_amd64.deb
RUN dpkg -i rmr-dev_${RMR_VER}_amd64.deb

Alternately a repository can be installed for use by the usual toolsA repository must be installed before it can be used, for example in Ubuntu via "apt-get".  The following command will make the "master" repository available in an Ubuntu system:

...