Skip to content
Success

Console Output

Started by upstream project "clean-old-builds" build number 1442
originally caused by:
 Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on _launcher_ (standard binaries_standard minimal builder binaries_minimal binaries_full cleanable full) in workspace /builds/workspace/clean-old-builds
[EnvInject] - Inject global passwords.
[EnvInject] - Mask passwords that will be passed as build parameters.
[clean-old-builds] $ bash /tmp/jenkins16011445686506888841.sh

--------------- Clone/update CI scripts ---------------
pwd = /builds/workspace/clean-old-builds
HEAD is now at fc998c2 [scripts] FIX RequiredPlugin detection
CI scripts are available in /builds/workspace/clean-old-builds/ci/scripts
-------------------------------------------------------

------------- Clone/update reference_repo/sofa --------------
Checking /builds/reference_repo/sofa
Reference repo found. Updating...
From https://github.com/sofa-framework/sofa
   d2b4fc7e28..70628e35a4  master     -> origin/master
Updating d2b4fc7e28..70628e35a4
Fast-forward
 Component/CMakeLists.txt                           |   2 +-
 Component/Compat/CMakeLists.txt                    |   1 +
 Component/Compat/Sofa.Component.SceneUtility.cmake |  14 +++
 .../src/SofaBaseUtils/AddResourceRepository.h      |  34 +++++++
 Component/Compat/src/SofaBaseUtils/InfoComponent.h |  39 ++++++++
 .../Compat/src/SofaBaseUtils/MakeAliasComponent.h  |  39 ++++++++
 .../src/SofaBaseUtils/MakeDataAliasComponent.h     |  39 ++++++++
 .../Compat/src/SofaBaseUtils/RequiredPlugin.h      |  32 ++++++
 .../src/SofaBaseUtils/messageHandlerComponent.h    |  33 +++++++
 .../Compat/src/SofaGraphComponent/APIVersion.h     |  39 ++++++++
 .../Compat/src/SofaGraphComponent/PauseAnimation.h |  32 ++++++
 .../src/SofaGraphComponent/PauseAnimationOnEvent.h |  32 ++++++
 Component/SceneUtility/CMakeLists.txt              |  44 +++++++++
 .../Sofa.Component.SceneUtilityConfig.cmake.in     |  15 +++
 .../sofa/component/sceneutility}/APIVersion.cpp    |   4 +-
 .../src/sofa/component/sceneutility}/APIVersion.h  |  12 +--
 .../sceneutility}/AddResourceRepository.cpp        |   6 +-
 .../sceneutility}/AddResourceRepository.h          |  12 +--
 .../sofa/component/sceneutility}/InfoComponent.cpp |   6 +-
 .../sofa/component/sceneutility}/InfoComponent.h   |  12 +--
 .../component/sceneutility}/MakeAliasComponent.cpp |   6 +-
 .../component/sceneutility}/MakeAliasComponent.h   |  12 +--
 .../sceneutility}/MakeDataAliasComponent.cpp       |   6 +-
 .../sceneutility}/MakeDataAliasComponent.h         |  12 +--
 .../sceneutility/MessageHandlerComponent.cpp       |   6 +-
 .../sceneutility/MessageHandlerComponent.h         |  10 +-
 .../component/sceneutility}/PauseAnimation.cpp     |   6 +-
 .../sofa/component/sceneutility}/PauseAnimation.h  |   8 +-
 .../sceneutility}/PauseAnimationOnEvent.cpp        |   6 +-
 .../sceneutility}/PauseAnimationOnEvent.h          |  12 +--
 .../component/sceneutility}/RequiredPlugin.cpp     |   6 +-
 .../sofa/component/sceneutility}/RequiredPlugin.h  |   8 +-
 .../src/sofa/component/sceneutility/config.h.in    |  37 +++++++
 .../src/sofa/component/sceneutility/init.cpp       |  51 ++++++++++
 .../src/sofa/component/sceneutility/init.h         |  28 ++++++
 SofaKernel/modules/SofaBaseUtils/CMakeLists.txt    |  21 ++--
 .../SofaBaseUtils/SofaBaseUtilsConfig.cmake.in     |   7 ++
 .../src/SofaBaseUtils/initSofaBaseUtils.cpp        |   9 +-
 .../SofaHelper/src/sofa/helper/ComponentChange.cpp | 110 ++++++++++++---------
 .../SofaCUDA/sofa/gpu/cuda/CudaCollision.cpp       |  25 +----
 .../SofaCUDA/sofa/gpu/cuda/CudaContactMapper.h     |  29 ++----
 .../SofaCUDA/sofa/gpu/cuda/CudaIdentityMapping.cpp |  42 ++------
 .../SofaCUDA/sofa/gpu/cuda/CudaIdentityMapping.h   |  27 +----
 .../SofaCUDA/sofa/gpu/cuda/CudaIdentityMapping.inl |  30 ++----
 .../SofaCUDA/sofa/gpu/cuda/CudaSubsetMapping.cpp   |  43 ++------
 .../SofaCUDA/sofa/gpu/cuda/CudaSubsetMapping.h     |  26 ++---
 .../SofaCUDA/sofa/gpu/cuda/CudaSubsetMapping.inl   |  32 ++----
 modules/SofaGraphComponent/CMakeLists.txt          |  17 ++--
 .../SofaGraphComponentConfig.cmake.in              |   7 ++
 .../src/SofaGraphComponent/SceneCheckAPIChange.cpp |   2 +-
 .../SofaGraphComponent/initSofaGraphComponent.cpp  |   8 +-
 51 files changed, 745 insertions(+), 351 deletions(-)
 create mode 100644 Component/Compat/Sofa.Component.SceneUtility.cmake
 create mode 100644 Component/Compat/src/SofaBaseUtils/AddResourceRepository.h
 create mode 100644 Component/Compat/src/SofaBaseUtils/InfoComponent.h
 create mode 100644 Component/Compat/src/SofaBaseUtils/MakeAliasComponent.h
 create mode 100644 Component/Compat/src/SofaBaseUtils/MakeDataAliasComponent.h
 create mode 100644 Component/Compat/src/SofaBaseUtils/RequiredPlugin.h
 create mode 100644 Component/Compat/src/SofaBaseUtils/messageHandlerComponent.h
 create mode 100644 Component/Compat/src/SofaGraphComponent/APIVersion.h
 create mode 100644 Component/Compat/src/SofaGraphComponent/PauseAnimation.h
 create mode 100644 Component/Compat/src/SofaGraphComponent/PauseAnimationOnEvent.h
 create mode 100644 Component/SceneUtility/CMakeLists.txt
 create mode 100644 Component/SceneUtility/Sofa.Component.SceneUtilityConfig.cmake.in
 rename {modules/SofaGraphComponent/src/SofaGraphComponent => Component/SceneUtility/src/sofa/component/sceneutility}/APIVersion.cpp (97%)
 rename {modules/SofaGraphComponent/src/SofaGraphComponent => Component/SceneUtility/src/sofa/component/sceneutility}/APIVersion.h (87%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/AddResourceRepository.cpp (96%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/AddResourceRepository.h (87%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/InfoComponent.cpp (91%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/InfoComponent.h (88%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/MakeAliasComponent.cpp (95%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/MakeAliasComponent.h (90%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/MakeDataAliasComponent.cpp (95%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/MakeDataAliasComponent.h (90%)
 rename SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils/messageHandlerComponent.cpp => Component/SceneUtility/src/sofa/component/sceneutility/MessageHandlerComponent.cpp (97%)
 rename SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils/messageHandlerComponent.h => Component/SceneUtility/src/sofa/component/sceneutility/MessageHandlerComponent.h (91%)
 rename {modules/SofaGraphComponent/src/SofaGraphComponent => Component/SceneUtility/src/sofa/component/sceneutility}/PauseAnimation.cpp (94%)
 rename {modules/SofaGraphComponent/src/SofaGraphComponent => Component/SceneUtility/src/sofa/component/sceneutility}/PauseAnimation.h (90%)
 rename {modules/SofaGraphComponent/src/SofaGraphComponent => Component/SceneUtility/src/sofa/component/sceneutility}/PauseAnimationOnEvent.cpp (94%)
 rename {modules/SofaGraphComponent/src/SofaGraphComponent => Component/SceneUtility/src/sofa/component/sceneutility}/PauseAnimationOnEvent.h (88%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/RequiredPlugin.cpp (98%)
 rename {SofaKernel/modules/SofaBaseUtils/src/SofaBaseUtils => Component/SceneUtility/src/sofa/component/sceneutility}/RequiredPlugin.h (93%)
 create mode 100644 Component/SceneUtility/src/sofa/component/sceneutility/config.h.in
 create mode 100644 Component/SceneUtility/src/sofa/component/sceneutility/init.cpp
 create mode 100644 Component/SceneUtility/src/sofa/component/sceneutility/init.h
-------------------------------------------------------

Filesystem      Size  Used Avail Use% Mounted on
udev            974M     0  974M   0% /dev
tmpfs           200M  904K  199M   1% /run
/dev/vda2        38G  5.1G   31G  15% /
tmpfs           997M     0  997M   0% /dev/shm
tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs           997M     0  997M   0% /sys/fs/cgroup
/dev/vdb1        40G   19G   19G  50% /builds
tmpfs           200M     0  200M   0% /run/user/1000
----------------- clean-old-builds.sh -----------------
ENV VARS: load /builds/workspace/clean-old-builds/ci/scripts/env/default
ENV VARS: load node specific /builds/workspace/clean-old-builds/ci/scripts/env/_launcher_
python3
------------------
free_space = 19858428
max_days_since_modified_short = 1/2
max_days_since_modified_long = 6
------------------

Cleaning in /builds/workspace/clean-old-builds/../sofa-custom

Cleaning in /builds/workspace/clean-old-builds/../sofa-custom@2

Cleaning in /builds/workspace/clean-old-builds/../launcher/sofa-framework
  master:
  Launcher detected.
    last launch: Fri Feb  4 03:47:32 CET 2022   (more than 6 days ago)
    -> removed
  PR-2585:
  Launcher detected.
    last launch: Tue Feb  8 00:43:31 CET 2022
    -> not removed
  PR-2587:
  Launcher detected.
    last launch: Tue Feb  8 22:54:29 CET 2022
    -> not removed
  PR-2612:
  Launcher detected.
    last launch: Thu Feb 10 11:17:25 CET 2022
    -> not removed
  PR-2647:
  Launcher detected.
    last launch: Mon Feb  7 15:43:40 CET 2022
    -> not removed
  PR-2663:
  Launcher detected.
    last launch: Fri Feb  4 10:51:16 CET 2022   (more than 6 days ago)
    -> removed
  PR-2673:
  Launcher detected.
    last launch: Tue Feb  8 10:40:08 CET 2022
    -> not removed
  PR-2674:
    PR 2674 is closed
    -> removed
  PR-2676:
  Launcher detected.
    last launch: Tue Feb  8 11:39:58 CET 2022
    -> not removed
  PR-2678:
  Launcher detected.
    last launch: Tue Feb  8 17:21:38 CET 2022
    -> not removed
  PR-2679:
  Launcher detected.
    last launch: Tue Feb  8 17:29:46 CET 2022
    -> not removed
  PR-2684:
  Launcher detected.
    last launch: Wed Feb  9 17:57:12 CET 2022
    -> not removed
-------------------------------------------------------
Filesystem      Size  Used Avail Use% Mounted on
udev            974M     0  974M   0% /dev
tmpfs           200M  904K  199M   1% /run
/dev/vda2        38G  5.1G   31G  15% /
tmpfs           997M     0  997M   0% /dev/shm
tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs           997M     0  997M   0% /sys/fs/cgroup
/dev/vdb1        40G   17G   22G  44% /builds
tmpfs           200M     0  200M   0% /run/user/1000
Finished: SUCCESS