From 854f2fa95d57649f861b863e702cf155bfd43f75 Mon Sep 17 00:00:00 2001 From: Haakan T Johansson Date: Wed, 3 Dec 2025 23:58:12 +0100 Subject: [PATCH 1/3] Do not implicitly call std::string(0 /* nullptr */). Fixes CI build failure. --- src/Calibration.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Calibration.cc b/src/Calibration.cc index 8bee5260..6e5c58ce 100644 --- a/src/Calibration.cc +++ b/src/Calibration.cc @@ -624,7 +624,7 @@ std::string ISSCalibration::CaenType( unsigned int mod, unsigned int chan ){ } - return 0; + return ""; } @@ -714,7 +714,7 @@ std::string ISSCalibration::MesytecType( unsigned int mod, unsigned int chan ){ } - return 0; + return ""; } From 2a867efd6f2197fc97f26f2e82bee1f1852b8df6 Mon Sep 17 00:00:00 2001 From: Haakan T Johansson Date: Thu, 4 Dec 2025 00:33:58 +0100 Subject: [PATCH 2/3] Do not run github pages deplay for non-main branch, as it fails (permissions). --- .github/workflows/doxygen-gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/doxygen-gh-pages.yml b/.github/workflows/doxygen-gh-pages.yml index f53f24e9..1a42279f 100644 --- a/.github/workflows/doxygen-gh-pages.yml +++ b/.github/workflows/doxygen-gh-pages.yml @@ -2,7 +2,7 @@ name: Doxygen GitHub Pages Deploy Action on: push: - branches: [ "*" ] + branches: [ "main" ] pull_request: branches: [ "main" ] From 306cde52f813e0a3613653433315736402b5dedb Mon Sep 17 00:00:00 2001 From: Haakan T Johansson Date: Thu, 4 Dec 2025 00:45:47 +0100 Subject: [PATCH 3/3] Also not for pull_requst for main, as that triggers for pull requests, but also do not pass CI with permission error. --- .github/workflows/doxygen-gh-pages.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/doxygen-gh-pages.yml b/.github/workflows/doxygen-gh-pages.yml index 1a42279f..1b62364d 100644 --- a/.github/workflows/doxygen-gh-pages.yml +++ b/.github/workflows/doxygen-gh-pages.yml @@ -3,8 +3,6 @@ name: Doxygen GitHub Pages Deploy Action on: push: branches: [ "main" ] - pull_request: - branches: [ "main" ] jobs: deploy: