Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 2.35 KB

GET_SOURCES.md

File metadata and controls

58 lines (39 loc) · 2.35 KB

The OpenAirInterface software can be obtained from our gitLab server. You will need a git client to get the sources. The repository is currently used for main developments.

Prerequisites

You need to install git using the following commands:

sudo apt-get update
sudo apt-get install git

Using EURECOM Gitlab

The openairinterface5g repository holds the source code for the RAN (4G and 5G).

Configure git with your name/email address (only important if you are developer and want to contribute/push code to Git Repository):

git config --global user.name "Your Name"
git config --global user.email "Your email address"

In order to clone the Git repository (for OAI Users without login to gitlab server)

Cloning RAN repository:

git clone https://gitlab.eurecom.fr/oai/openairinterface5g.git

In order to contribute to the Git RAN repository (for OAI Developers/admins with login to gitlab server)

Please send email to [email protected] to be added to the repository as a developer (only important for users who want to commit code to the repository). If you do not have account on gitlab.eurecom.fr, please register yourself to gitlab.eurecom.fr and provide the login name in the email.

More information can be found in a separate page.

Which branch to checkout?

develop: contains recent commits that are tested on our CI test bench. The update frequency is about once a week. 5G is only in this branch. It is the recommended and default branch. master: contains a stable version of 4G, and will be updated in the future with 5G.

Please see the work flow and policies page: https://gitlab.eurecom.fr/oai/openairinterface5g/wikis/oai-policies-home

You can find the latest stable tag release here: https://gitlab.eurecom.fr/oai/openairinterface5g/tags

The tag naming conventions are:

  • On master branch: v1.x.y where
    • x is the minor release number, incremented every 2-3 months when we are merging develop into master branch.
    • y is the maintenance number, starting at 0 when we do a minor release and being incremented when a bug fix is incorporated into master branch.
  • On develop branch yyyy.wxx
    • yyyy is the calendar year
    • xx the week number within the year