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)pushed manually; used as a sandbox only.
  • 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.

...

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/masterstaging/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/masterstaging/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

...

Code Block
curl -s https://packagecloud.io/install/repositories/o-ran-sc/masterstaging/script.deb.sh | sudo bash

...