Skip to content
Success

Console Output

Started by upstream project "clean-old-builds" build number 1328
originally caused by:
 Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on sofa-ci-windows10-1 (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\jenkins154581799208633458.sh

--------------- Clone/update CI scripts ---------------
pwd = /j/jenkins2/workspace/clean-old-builds
From https://github.com/sofa-framework/ci
   07fb0e8..3eb1671  master     -> origin/master
HEAD is now at 3eb1671 [scripts] Disable Flexible, Compliant and Rigidscale (#7)
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
   199b2c0c18..8f6eeb5eb9  master     -> origin/master
Updating 199b2c0c18..8f6eeb5eb9
Fast-forward
 .../modules/Sofa.LinearAlgebra/CMakeLists.txt      |  39 +--
 .../Sofa.LinearAlgebra.Testing/CMakeLists.txt      |   1 +
 .../Sofa.LinearAlgebra.Testing/SparseMatrixTest.h  | 140 ++++++++++
 .../Sofa.LinearAlgebra_test/CMakeLists.txt         |   2 +
 .../SparseMatrixProduct_test.cpp                   | 137 +++++++++
 .../SparseMatrixStorageOrder_test.cpp              | 122 ++++++++
 .../src/sofa/linearalgebra/BTDMatrix.h             |  43 +--
 .../src/sofa/linearalgebra/BTDMatrix.inl           |  20 +-
 .../src/sofa/linearalgebra/BaseMatrix.cpp          |   6 +-
 .../src/sofa/linearalgebra/BaseMatrix.h            |  44 +--
 .../src/sofa/linearalgebra/BlocFullMatrix.h        |  40 +--
 .../src/sofa/linearalgebra/BlocFullMatrix.inl      |  34 +--
 .../src/sofa/linearalgebra/BlockDiagonalMatrix.h   |  29 +-
 .../src/sofa/linearalgebra/BlockVector.h           |  17 +-
 .../src/sofa/linearalgebra/BlockVector.inl         |  14 +-
 .../linearalgebra/CompressedRowSparseMatrix.cpp    |  26 +-
 .../sofa/linearalgebra/CompressedRowSparseMatrix.h | 282 +++++++++----------
 .../src/sofa/linearalgebra/SparseMatrixProduct.h   | 124 +++++++++
 ...rseMatrixProduct[CompressedRowSparseMatrix].cpp |  43 +++
 ...parseMatrixProduct[CompressedRowSparseMatrix].h |  35 +++
 .../SparseMatrixProduct[EigenSparseMatrix].cpp     | 262 ++++++++++++++++++
 .../SparseMatrixProduct[EigenSparseMatrix].h       |  43 +++
 .../sofa/linearalgebra/SparseMatrixStorageOrder.h  | 124 +++++++++
 ...SparseMatrixStorageOrder[EigenSparseMatrix].cpp | 180 ++++++++++++
 .../SparseMatrixStorageOrder[EigenSparseMatrix].h  |  74 +++++
 .../src/sofa/linearalgebra/config.h.in             |  11 +
 .../src/sofa/linearalgebra/fwd.h                   |   4 +-
 .../src/sofa/linearalgebra/matrix_bloc_traits.h    |  65 +++--
 .../Sofa.Testing/src/sofa/testing/NumericTest.h    |  17 +-
 .../SofaBaseLinearSolver_test/CMakeLists.txt       |   2 +-
 .../animationloop/MechanicalMatrixMapper.pyscn     |   2 +-
 .../MechanicalMatrixMapper.h                       |  29 +-
 .../MechanicalMatrixMapper.inl                     | 127 +++++----
 .../src/SofaGeneralLinearSolver/BTDLinearSolver.h  |   4 +-
 modules/SofaGeneralSimpleFem/CMakeLists.txt        |   9 +
 .../BeamFEMForceField_test.cpp                     | 307 +++++++++++++++++++++
 .../SofaGeneralSimpleFem_test/CMakeLists.txt       |  15 +
 .../src/SofaGeneralSimpleFem/BeamFEMForceField.h   |  33 +--
 .../src/SofaGeneralSimpleFem/BeamFEMForceField.inl |  32 +--
 .../SofaPreconditioner/BlockJacobiPreconditioner.h |   2 +-
 .../src/SofaPreconditioner/SSORPreconditioner.inl  |  16 +-
 41 files changed, 2124 insertions(+), 432 deletions(-)
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/Sofa.LinearAlgebra.Testing/src/Sofa.LinearAlgebra.Testing/SparseMatrixTest.h
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/Sofa.LinearAlgebra_test/SparseMatrixProduct_test.cpp
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/Sofa.LinearAlgebra_test/SparseMatrixStorageOrder_test.cpp
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixProduct.h
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixProduct[CompressedRowSparseMatrix].cpp
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixProduct[CompressedRowSparseMatrix].h
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixProduct[EigenSparseMatrix].cpp
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixProduct[EigenSparseMatrix].h
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixStorageOrder.h
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixStorageOrder[EigenSparseMatrix].cpp
 create mode 100644 SofaKernel/modules/Sofa.LinearAlgebra/src/sofa/linearalgebra/SparseMatrixStorageOrder[EigenSparseMatrix].h
 create mode 100644 modules/SofaGeneralSimpleFem/SofaGeneralSimpleFem_test/BeamFEMForceField_test.cpp
 create mode 100644 modules/SofaGeneralSimpleFem/SofaGeneralSimpleFem_test/CMakeLists.txt
-------------------------------------------------------

Filesystem            Size  Used Avail Use% Mounted on
C:/Program Files/Git   60G   36G   25G  60% /
J:                    100G   62G   39G  62% /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-1
C:/Python37/python.exe
------------------
free_space = 39989120
max_days_since_modified_short = 1/2
max_days_since_modified_long = 6
------------------

Cleaning in J:\jenkins2\workspace\clean-old-builds/../sofa-framework
  PR-2406:
    windows_vs2017_options_release:
      last build was on Tue Oct 19 21:46:59 RDT 2021
      -> not removed
  PR-2416:
    windows_vs2017_options_release:
      last build was on Thu Oct 14 14:02:27 RDT 2021   (more than 6 days ago)
      -> removed
    All valid configs were removed
    -> PR-2416 removed
  PR-2428:
    windows_vs2017_options_release:
      last build was on Tue Oct 19 14:47:13 RDT 2021
      -> not removed
  PR-2436:
    windows_vs2017_options_release:
      last build was on Tue Oct 19 18:57:41 RDT 2021
      -> not removed
  PR-2438:
    windows_vs2017_options_release:
      last build was on Wed Oct 20 16:27:20 RDT 2021
      -> not removed
  master:
    windows_vs2017_default_release:
      last build was on Wed Oct 20 20:11:07 RDT 2021
      -> not removed
    windows_vs2017_options_release:
      last build was on Fri Oct 15 18:37:05 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   36G   25G  60% /
J:                    100G   47G   54G  47% /j
Finished: SUCCESS