Commit e76d5018 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Merge branch 'develop' into 'master'

Release TeraFlowSDN Controller 6.0

See merge request !408
parents 82ac4c4e 0e3e7470
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
# Avoid including these folders when building the components
.git/
.gitlab/
.github/
.vscode/
coverage/
data/
+1 −1
Original line number Diff line number Diff line
@@ -172,6 +172,7 @@ cython_debug/

# Other
/tmp
.github

# Sqlite
*.db
@@ -192,4 +193,3 @@ libyang/

# Other logs
**/logs/*.log.*
+6 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.


# stages of the cicd pipeline
stages:
  #- dependencies
@@ -27,6 +28,7 @@ include:
  - local: '/src/context/.gitlab-ci.yml'
  - local: '/src/device/.gitlab-ci.yml'
  - local: '/src/service/.gitlab-ci.yml'
  - local: '/src/qkd_app/.gitlab-ci.yml'
  - local: '/src/dbscanserving/.gitlab-ci.yml'
  - local: '/src/opticalattackmitigator/.gitlab-ci.yml'
  - local: '/src/opticalattackdetector/.gitlab-ci.yml'
@@ -54,6 +56,10 @@ include:
  - local: '/src/qos_profile/.gitlab-ci.yml'
  - local: '/src/vnt_manager/.gitlab-ci.yml'
  - local: '/src/e2e_orchestrator/.gitlab-ci.yml'
  - local: '/src/ztp_server/.gitlab-ci.yml'
  - local: '/src/osm_client/.gitlab-ci.yml'
  - local: '/src/simap_connector/.gitlab-ci.yml'
  - local: '/src/pluggables/.gitlab-ci.yml'

  # This should be last one: end-to-end integration tests
  - local: '/src/tests/.gitlab-ci.yml'
+0 −1
Original line number Diff line number Diff line
@@ -24,4 +24,3 @@ protobuf==3.20.*
pytest==6.2.5
pytest-benchmark==3.4.1
python-dateutil==2.8.2
pytest-depends==1.0.1
+27 −0
Original line number Diff line number Diff line
# Copyright 2022-2025 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

coverage==7.9.*
grpcio==1.73.*
grpcio-health-checking==1.73.*
grpcio-reflection==1.73.*
grpcio-tools==1.73.*
grpclib==0.4.8
prettytable==3.16.0
prometheus-client==0.22.*
protobuf==6.32.*
pytest==8.4.1
pytest-benchmark==5.1.0
python-dateutil==2.9.0
pytest-depends==1.0.1
Loading