Commit cbfd5c42 authored by Adrian Pino's avatar Adrian Pino
Browse files

Merge branch 'chore/delete-old-github-references' into 'main'

Chore/delete old github references

See merge request !183
parents d398b7e0 dd9cdd91
Loading
Loading
Loading
Loading
Loading

.github/workflows/ci.yaml

deleted100644 → 0
+0 −52
Original line number Diff line number Diff line
name: CI Pipeline

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  tests:
    name: Run tests
    runs-on: ubuntu-latest
    container:
      image: python:3.12-slim

    steps:
    - name: Checkout code
      uses: actions/checkout@v4

    - name: Install dependencies
      run: |
        pip install -r requirements.txt
        pip install -e .

    - name: "Run test: validate edge cloud clients instantiation"
      run: pytest -v tests/common/test_invoke_edgecloud_clients.py

    - name: "Run test: validate network clients instantiation"
      run: pytest -v tests/common/test_invoke_network_clients.py

  lint:
    name: Run linters
    if: github.event_name == 'pull_request'
    runs-on: ubuntu-latest
    container:
      image: python:3.12-slim

    steps:
    - name: Checkout code
      uses: actions/checkout@v4

    - name: Install dependencies
      run: pip install -r requirements.txt

    - name: isort check
      run: isort src tests --check --profile black --filter-files

    - name: black check
      run: black src tests --check --line-length=100

    - name: flake8 check
      run: flake8 src tests
+9 −23
Original line number Diff line number Diff line
<a href="https://github.com/SunriseOpenOperatorPlatform/open-sdk/actions/workflows/ci.yaml" title="CI Status">
  <img src="https://github.com/SunriseOpenOperatorPlatform/open-sdk/actions/workflows/ci.yaml/badge.svg">
<a href="https://labs.etsi.org/rep/oop/code/tf-sdk/-/pipelines" title="Pipeline Status">
  <img src="https://labs.etsi.org/rep/oop/code/tf-sdk/badges/main/pipeline.svg" alt="pipeline status">
</a>
<a href="https://github.com/SunriseOpenOperatorPlatform/open-sdk/commits/" title="Last Commit">
  <img src="https://img.shields.io/github/last-commit/SunriseOpenOperatorPlatform/open-sdk?style=plastic">
</a>
<a href="https://github.com/SunriseOpenOperatorPlatform/open-sdk/issues" title="Open Issues">
  <img src="https://img.shields.io/github/issues/SunriseOpenOperatorPlatform/open-sdk?style=plastic">
</a>
<a href="https://github.com/SunriseOpenOperatorPlatform/open-sdk/pulls" title="Open Pull Requests">
  <img src="https://img.shields.io/github/issues-pr/SunriseOpenOperatorPlatform/open-sdk?style=plastic">
</a>
<a href="https://github.com/SunriseOpenOperatorPlatform/open-sdk/graphs/contributors" title="Contributors">
  <img src="https://img.shields.io/github/contributors/SunriseOpenOperatorPlatform/open-sdk?style=plastic">
</a>
<a href="https://github.com/SunriseOpenOperatorPlatform/open-sdk/blob/main/LICENSE" title="License">
  <img src="https://img.shields.io/badge/License-Apache%202.0-green.svg?style=plastic">
</a>
<a href="https://github.com/SunriseOpenOperatorPlatform/open-sdk/releases/latest" title="Latest Release">
  <img src="https://img.shields.io/github/release/SunriseOpenOperatorPlatform/open-sdk?style=plastic">
<a href="https://labs.etsi.org/rep/oop/code/tf-sdk/-/blob/main/LICENSE" title="License">
  <img src="https://img.shields.io/badge/License-Apache%202.0-green.svg?style=plastic" alt="license">
</a>


# OpenSDK
# TF SDK

Open source SDK to abstract CAMARA/GSMA Transformation Functions (TFs) for Edge Cloud platforms, 5G network cores and O-RAN solutions.

@@ -118,12 +104,12 @@ Please follow our full [Contributing Guidelines](docs/CONTRIBUTING.md) for furth

```mermaid
sequenceDiagram
title Application Deployment using the Open SDK
title Application Deployment using the TF SDK

actor AP as Application Vertical Provider
box Module implementing CAMARA APIs
    participant API as CAMARA Edge Application Management API
    participant SDK as Open SDK
    participant SDK as TF SDK
end
participant K8s as Kubernetes

@@ -150,7 +136,7 @@ title QoS Session Creation over Open5GS
actor AP as Application Vertical Provider
box Module implementing CAMARA APIs
    participant API as CAMARA QoS Management API
    participant SDK as Open SDK
    participant SDK as TF SDK
end
participant NEF as NEF
participant 5GS as Open5GS
@@ -168,7 +154,7 @@ NEF ->> 5GS: QoS session creation
```
---

## Roadmap for Open SDK 2nd release
## Roadmap for TF SDK 2nd release

- [ ] Add support to GSMA OPG.02 TFs
- [ ] Include JUNIPER O-RAN adapter
+1 −1
Original line number Diff line number Diff line
# -*- coding: utf-8 -*-
##
# This file is part of the Open SDK
# This file is part of the TF SDK
#
# Contributors:
#   - Adrián Pino Martínez (adrian.pino@i2cat.net)
+1 −1
Original line number Diff line number Diff line
# -*- coding: utf-8 -*-
##
# This file is part of the Open SDK
# This file is part of the TF SDK
#
# Contributors:
#   - Adrián Pino Martínez (adrian.pino@i2cat.net)
+1 −1
Original line number Diff line number Diff line
##
# This file is part of the Open SDK
# This file is part of the TF SDK
#
# Contributors:
#   - Vasilis Pitsilis (vpitsilis@dat.demokritos.gr, vpitsilis@iit.demokritos.gr)
Loading