Skip to content
Success

Console Output

Started by upstream project "clean-old-builds" build number 1306
originally caused by:
 Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on consortium-macos-0 (default debug package release builder options macos_clang rebootable mac_clang-3.5 cleanable) in workspace /Volumes/Jenkins/workspace/clean-old-builds
[EnvInject] - Inject global passwords.
[EnvInject] - Mask passwords that will be passed as build parameters.
[clean-old-builds] $ bash /Volumes/Jenkins/tmp/jenkins5485628193422887649.sh

--------------- Clone/update CI scripts ---------------
pwd = /Volumes/Jenkins/workspace/clean-old-builds
From https://github.com/sofa-framework/ci
   09e65bd..2931ada  master     -> origin/master
HEAD is now at 2931ada [scripts] Improve clean-old-build upon free disk space (2)
CI scripts are available in /Volumes/Jenkins/workspace/clean-old-builds/ci/scripts
-------------------------------------------------------

------------- Clone/update reference_repo/sofa --------------
Checking /Users/ci/reference_repo/sofa
Reference repo found. Updating...
From https://github.com/sofa-framework/sofa
   91f47497b8..a7a5bb12b3  master          -> origin/master
   968889dc39..46c419e919  guparan-patch-1 -> origin/guparan-patch-1
Updating 91f47497b8..a7a5bb12b3
Fast-forward
 SofaKernel/modules/Sofa.Compat/CMakeLists.txt      |   7 +
 .../src/SofaBaseLinearSolver/MatrixExpr.h          |   2 +-
 .../src/SofaEigen2Solver/EigenBaseSparseMatrix.h   |  35 ++++
 .../SofaEigen2Solver/EigenBaseSparseMatrix_MT.h    |  26 +++
 .../src/SofaEigen2Solver/EigenMatrixManipulator.h  |  39 +++++
 .../src/SofaEigen2Solver/EigenSparseMatrix.h       |  99 +++++++++++
 .../Sofa.Compat/src/SofaEigen2Solver/EigenVector.h |  33 ++++
 .../src/SofaEigen2Solver/EigenVectorWrapper.h}     |  11 +-
 .../modules/Sofa.LinearAlgebra/CMakeLists.txt      |  29 +++-
 .../Sofa.LinearAlgebraConfig.cmake.in              |   7 +
 .../sofa/linearalgebra}/EigenBaseSparseMatrix.h    |  87 +---------
 .../sofa/linearalgebra}/EigenBaseSparseMatrix_MT.h |   4 -
 .../sofa/linearalgebra}/EigenMatrixManipulator.cpp |   7 +-
 .../sofa/linearalgebra}/EigenMatrixManipulator.h   |  10 +-
 .../src/sofa/linearalgebra}/EigenSparseMatrix.h    | 187 +++++++--------------
 .../src/sofa/linearalgebra/EigenVector.cpp         |  30 ++++
 .../src/sofa/linearalgebra}/EigenVector.h          | 149 +++-------------
 .../src/sofa/linearalgebra/config.h.in             |   4 +
 .../src/SofaBaseTopology/TopologyData.h            |  12 +-
 .../src/SofaBaseTopology/TopologyData.inl          |  55 +++++-
 .../src/SofaBaseTopology/TopologyDataHandler.inl   |   6 -
 .../src/SofaBaseTopology/TopologySubsetData.inl    |  10 +-
 .../src/SofaBaseTopology/TopologySubsetIndices.cpp |   2 +-
 .../src/sofa/core/topology/BaseTopologyData.h      |  13 +-
 .../src/SofaDeformable/AngularSpringForceField.inl |   2 +-
 .../SofaDeformable/RestShapeSpringsForceField.cpp  |   1 +
 SofaKernel/modules/SofaEigen2Solver/CMakeLists.txt |  21 ---
 .../SofaEigen2SolverConfig.cmake.in                |   9 +-
 .../src/SofaEigen2Solver/EigenVectorWrapper.h      | 152 -----------------
 .../src/sofa/helper/system/PluginManager.cpp       |  29 +++-
 .../animationloop/MechanicalMatrixMapper.pyscn     |   4 +-
 .../ProjectToPointConstraint.inl                   |   1 +
 .../MechanicalMatrixMapper.inl                     | 121 +++++++------
 33 files changed, 581 insertions(+), 623 deletions(-)
 create mode 100644 SofaKernel/modules/Sofa.Compat/src/SofaEigen2Solver/EigenBaseSparseMatrix.h
 create mode 100644 SofaKernel/modules/Sofa.Compat/src/SofaEigen2Solver/EigenBaseSparseMatrix_MT.h
 create mode 100644 SofaKernel/modules/Sofa.Compat/src/SofaEigen2Solver/EigenMatrixManipulator.h
 create mode 100644 SofaKernel/modules/Sofa.Compat/src/SofaEigen2Solver/EigenSparseMatrix.h
 create mode 100644 SofaKernel/modules/Sofa.Compat/src/SofaEigen2Solver/EigenVector.h
 rename SofaKernel/modules/{SofaEigen2Solver/src/SofaEigen2Solver/EigenVector.cpp => Sofa.Compat/src/SofaEigen2Solver/EigenVectorWrapper.h} (87%)
 rename SofaKernel/modules/{SofaEigen2Solver/src/SofaEigen2Solver => Sofa.LinearAlgebra/src/sofa/linearalgebra}/EigenBaseSparseMatrix.h (85%)
 rename SofaKernel/modules/{SofaEigen2Solver/src/SofaEigen2Solver => Sofa.LinearAlgebra/src/sofa/linearalgebra}/EigenBaseSparseMatrix_MT.h (99%)
 rename SofaKernel/modules/{SofaEigen2Solver/src/SofaEigen2Solver => Sofa.LinearAlgebra/src/sofa/linearalgebra}/EigenMatrixManipulator.cpp (94%)
 rename SofaKernel/modules/{SofaEigen2Solver/src/SofaEigen2Solver => Sofa.LinearAlgebra/src/sofa/linearalgebra}/EigenMatrixManipulator.h (93%)
 rename SofaKernel/modules/{SofaEigen2Solver/src/SofaEigen2Solver => Sofa.LinearAlgebra/src/sofa/linearalgebra}/EigenSparseMatrix.h (81%)
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/EigenVector.cpp
 rename SofaKernel/modules/{SofaEigen2Solver/src/SofaEigen2Solver => Sofa.LinearAlgebra/src/sofa/linearalgebra}/EigenVector.h (62%)
 delete mode 100644 SofaKernel/modules/SofaEigen2Solver/src/SofaEigen2Solver/EigenVectorWrapper.h
-------------------------------------------------------

Filesystem      Size   Used  Avail Capacity iused      ifree %iused  Mounted on
/dev/disk2s5    50Gi   10Gi   21Gi    34%  488245  521751355    0%   /
devfs          187Ki  187Ki    0Bi   100%     646          0  100%   /dev
/dev/disk2s1    50Gi   17Gi   21Gi    45%  844677  521394923    0%   /System/Volumes/Data
/dev/disk2s4    50Gi  1.0Gi   21Gi     5%       2  522239598    0%   /private/var/vm
/dev/disk1s2   100Gi   45Gi   54Gi    46%  642443 4294324836    0%   /Volumes/Jenkins
map auto_home    0Bi    0Bi    0Bi   100%       0          0  100%   /System/Volumes/Data/home
----------------- clean-old-builds.sh -----------------
ENV VARS: load /Volumes/Jenkins/workspace/clean-old-builds/ci/scripts/env/default
ENV VARS: load node specific /Volumes/Jenkins/workspace/clean-old-builds/ci/scripts/env/consortium-macos-0
python3
------------------
free_space = 74949000
max_days_since_modified_short = 1/2
max_days_since_modified_long = 6
------------------

Cleaning in /Volumes/Jenkins/workspace/clean-old-builds/../sofa-framework
  PR-2300:
    macos_clang_options_release:
      last build was on Wed Sep 29 17:42:17 CEST 2021
      -> not removed
  PR-2344:
    macos_clang_options_release:
      last build was on Mon Sep 27 15:22:30 CEST 2021
      -> not removed
  PR-2350:
    macos_clang_options_release:
      last build was on Tue Sep 28 16:03:35 CEST 2021
      -> not removed
  PR-2352:
    PR 2352 is closed
    -> removed
  PR-2362:
    PR 2362 is closed
    -> removed
  PR-2363:
    macos_clang_options_release:
      last build was on Tue Sep 28 18:15:57 CEST 2021
      -> not removed
  PR-2364:
    macos_clang_options_release:
      last build was on Tue Sep 28 23:16:19 CEST 2021
      -> not removed
  PR-2365:
    macos_clang_options_release:
      last build was on Wed Sep 29 10:12:26 CEST 2021
      -> not removed
  master:
    macos_clang_default_release:
      last build was on Thu Sep 30 00:40:04 CEST 2021
      -> not removed
    macos_clang_options_release:
      last build was on Wed Sep 29 13:04:11 CEST 2021
      -> not removed
-------------------------------------------------------
Filesystem      Size   Used  Avail Capacity iused      ifree %iused  Mounted on
/dev/disk2s5    50Gi   10Gi   21Gi    34%  488245  521751355    0%   /
devfs          187Ki  187Ki    0Bi   100%     646          0  100%   /dev
/dev/disk2s1    50Gi   17Gi   21Gi    45%  844685  521394915    0%   /System/Volumes/Data
/dev/disk2s4    50Gi  1.0Gi   21Gi     5%       2  522239598    0%   /private/var/vm
/dev/disk1s2   100Gi   25Gi   75Gi    25%  424079 4294543200    0%   /Volumes/Jenkins
map auto_home    0Bi    0Bi    0Bi   100%       0          0  100%   /System/Volumes/Data/home
Finished: SUCCESS