From 29b6eeb1dffff2df445c7b8bfbc33aa5478927ac Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Wed, 15 Jul 2026 12:44:50 +0200 Subject: [PATCH] fix: cicd --- .gitea/workflows/deploy-and-restart-service.yml | 3 ++- services/dbpm3curr/current/app/src/agebd_dbpm3curr/main.py | 2 ++ services/master/current/app/src/agebd_master/main.py | 2 ++ services/nturns/current/app/src/agebd_nturns/main.py | 2 ++ .../src/agebd_{{service_name_lower_underscores}}/main.py.jinja | 2 ++ 5 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-and-restart-service.yml b/.gitea/workflows/deploy-and-restart-service.yml index 5014819..a49a636 100644 --- a/.gitea/workflows/deploy-and-restart-service.yml +++ b/.gitea/workflows/deploy-and-restart-service.yml @@ -63,4 +63,5 @@ jobs: ansible-playbook playbooks/deploy-and-restart-modified-services.yml \ -i hosts.yml \ -e "changed_services_raw=$CHANGED_SVC" \ - -e "agebd_env=$AGEBD_ENV" + -e "agebd_env=$AGEBD_ENV" \ + -vvv diff --git a/services/dbpm3curr/current/app/src/agebd_dbpm3curr/main.py b/services/dbpm3curr/current/app/src/agebd_dbpm3curr/main.py index 1613246..a729d27 100644 --- a/services/dbpm3curr/current/app/src/agebd_dbpm3curr/main.py +++ b/services/dbpm3curr/current/app/src/agebd_dbpm3curr/main.py @@ -6,6 +6,8 @@ from agebd.utils import init_logging from agebd_dbpm3curr import PVs, Service +# TODO: remove: cicd test 0 + def main( log_level: LogLevel = typer.Option( LogLevel.INFO, diff --git a/services/master/current/app/src/agebd_master/main.py b/services/master/current/app/src/agebd_master/main.py index 1dd7d1d..5ba25a3 100644 --- a/services/master/current/app/src/agebd_master/main.py +++ b/services/master/current/app/src/agebd_master/main.py @@ -6,6 +6,8 @@ from agebd.utils import init_logging from agebd_master import PVs, Service +# TODO: remove: cicd test 0 + def main( log_level: LogLevel = typer.Option( LogLevel.INFO, diff --git a/services/nturns/current/app/src/agebd_nturns/main.py b/services/nturns/current/app/src/agebd_nturns/main.py index d2572b5..c908a4b 100644 --- a/services/nturns/current/app/src/agebd_nturns/main.py +++ b/services/nturns/current/app/src/agebd_nturns/main.py @@ -6,6 +6,8 @@ from agebd.utils import init_logging from agebd_nturns import PVs, Service +# TODO: remove: cicd test 0 + def main( log_level: LogLevel = typer.Option( LogLevel.INFO, diff --git a/templates/service/{{service_name_lower}}/current/app/src/agebd_{{service_name_lower_underscores}}/main.py.jinja b/templates/service/{{service_name_lower}}/current/app/src/agebd_{{service_name_lower_underscores}}/main.py.jinja index 8dcadc1..0e10592 100644 --- a/templates/service/{{service_name_lower}}/current/app/src/agebd_{{service_name_lower_underscores}}/main.py.jinja +++ b/templates/service/{{service_name_lower}}/current/app/src/agebd_{{service_name_lower_underscores}}/main.py.jinja @@ -6,6 +6,8 @@ from agebd.utils import init_logging from agebd_{{service_name_lower_underscores}} import PVs, Service +# TODO: remove: cicd test 0 + def main( log_level: LogLevel = typer.Option( LogLevel.INFO,