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-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\jenkins5407983924004655740.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 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 = 39347560
max_days_since_modified_short = 1/2
max_days_since_modified_long = 6
------------------
Cleaning in J:\jenkins2\workspace\clean-old-builds/../sofa-framework
PR-2399:
windows_vs2017_options_release:
last build was on Wed Oct 20 18:36:26 RDT 2021
-> not removed
PR-2419:
windows_vs2017_options_release:
last build was on Mon Oct 18 16:04:51 RDT 2021
-> not removed
PR-2422:
windows_vs2017_options_release:
last build was on Fri Oct 15 18:41:25 RDT 2021
-> not removed
PR-2427:
windows_vs2017_options_release:
last build was on Mon Oct 18 10:42:46 RDT 2021
-> not removed
PR-2429:
windows_vs2017_options_release:
last build was on Mon Oct 18 14:31:36 RDT 2021
-> not removed
PR-2437:
windows_vs2017_options_release:
last build was on Wed Oct 20 18:00:54 RDT 2021
-> not removed
master:
windows_vs2017_default_release:
last build was on Fri Oct 15 10:23:12 RDT 2021
-> not removed
windows_vs2017_options_release:
last build was on Wed Oct 20 19:11:13 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 57G 44G 57% /j
Finished: SUCCESS