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 sofa-ci-windows10-3 (windows10_vs-2017 debug package release rebootable cleanable windows_msvc default builder options windows_vs2017) in workspace J:\jenkins2\workspace\clean-old-builds
[EnvInject] - Inject global passwords.
[EnvInject] - Mask passwords that will be passed as build parameters.
[clean-old-builds] $ bash C:\Users\ci\AppData\Local\Temp\jenkins1242163576536477800.sh

--------------- Clone/update CI scripts ---------------
pwd = /j/jenkins2/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 /j/jenkins2/workspace/clean-old-builds/ci/scripts
-------------------------------------------------------

------------- Clone/update reference_repo/sofa --------------
Checking /c/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 Use% Mounted on
C:/Program Files/Git   60G   38G   23G  63% /
J:                    100G   63G   38G  63% /j
----------------- clean-old-builds.sh -----------------
ENV VARS: load /j/jenkins2/workspace/clean-old-builds/ci/scripts/env/default
ENV VARS: load node specific /j/jenkins2/workspace/clean-old-builds/ci/scripts/env/sofa-ci-windows10-3
C:/Python37/python.exe
------------------
free_space = 38862344
max_days_since_modified_short = 1/2
max_days_since_modified_long = 6
------------------

Cleaning in J:\jenkins2\workspace\clean-old-builds/../sofa-framework
  PR-2339:
    PR 2339 is closed
    -> removed
  PR-2357:
    windows_vs2017_options_release:
      last build was on Thu Sep 23 13:03:16 RDT 2021   (more than 6 days ago)
      -> removed
    All valid configs were removed
    -> PR-2357 removed
  PR-2359:
    PR 2359 is closed
    -> removed
  PR-2362:
    PR 2362 is closed
    -> removed
  PR-2367:
    windows_vs2017_options_release:
      last build was on Wed Sep 29 13:07:31 RDT 2021
      -> not removed
  PR-2369:
    PR 2369 is closed
    -> removed
  master:
    windows_vs2017_options_release:
      last build was on Thu Sep 30 01:14:57 RDT 2021
      -> not removed
  v21.06_beta:
    windows_vs2017_options_release:
      last build was on Fri Sep 24 12:54:32 RDT 2021
      -> not removed

Cleaning in J:\jenkins2\workspace\clean-old-builds/../sofa-custom
  refs:
    All valid configs were removed
    -> refs removed
-------------------------------------------------------
Filesystem            Size  Used Avail Use% Mounted on
C:/Program Files/Git   60G   38G   23G  63% /
J:                    100G   30G   71G  30% /j
Finished: SUCCESS