1. 10 Oct, 2024 10 commits
  2. 01 Oct, 2024 2 commits
    • Robert Schmidt's avatar
      Create_Workspace: exit 0 at end · fc0cbc31
      Robert Schmidt authored
      the create_workspace.sh script checks if a branch should be merged into
      what we are trying to checkount (i.e., typically develop into
      feature-branch). The problem is that it uses a short-hand for an if
      branch.
      
          [ -n "${merge}"] && git merge...
      
      If we don't request a merge, [ -n XX ] will evalute to 1, and not do the
      git merge. Since it's the last command in the script, this makes the
      script return 1 (failure), when it actually succeeded.
      
      Add exit 0 to ensure we return 0 after successful end of the script. If
      there is a failure, the script will terminate early. It can be tested by
      e.g., giving a wrong commit ID.
      Reviewed-by: default avatarJaroslava Fiedlerova <Jaroslava.Fiedlerova@openairinterface.org>
      fc0cbc31
    • Robert Schmidt's avatar
      Merge branch 'integration_2024_w39' into 'develop' · 54f927b2
      Robert Schmidt authored
      Integration: `2024.w39`
      
      Closes #846
      
      See merge request oai/openairinterface5g!2990
      
      * !2718 Added Jenkins job for Colosseum testing integration
      * !2901 Fix log2_approx
      * !2983 fix(docker): making tini download platform specific to support ARM64 native builds
      * !2919 Add E2 SM in the target dockerfiles
      * !2981 NR gNB fix PMI report evaluation
      * !2979 NR-UE: Merging different UE NR SLOT FEP procedures into one.
      * !2899 SIB19 initialization and scheduling on gNB
      * !2953 Remove unnecessary c includes
      * !2926 Fix SRS FAPI at gNB
      * !2987 fix for variable power in PDSCH REs in case of 25 PRBs Bandwidth
      * !2993 remove DRX from UE capabilities: not supported yet
      * !2711 NR UE UL time alignment handling improvements
      * !2995 some small fixes for 5G NR
      * !2992 cleaner faster nr_pdcch_demapping_deinterleaving() inner loop
      * !2986 NR PDCP ticks for F1 split
      * !2982 CI framework cleanup
      54f927b2
  3. 30 Sep, 2024 5 commits
  4. 29 Sep, 2024 3 commits
  5. 28 Sep, 2024 20 commits