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 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/jenkins4849587439859935334.sh
--------------- Clone/update CI scripts ---------------
pwd = /Volumes/Jenkins/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 /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
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 Capacity iused ifree %iused Mounted on
/dev/disk2s5 50Gi 10Gi 17Gi 39% 488245 521751355 0% /
devfs 187Ki 187Ki 0Bi 100% 648 0 100% /dev
/dev/disk2s1 50Gi 21Gi 17Gi 56% 1025904 521213696 0% /System/Volumes/Data
/dev/disk2s4 50Gi 1.0Gi 17Gi 6% 2 522239598 0% /private/var/vm
map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /System/Volumes/Data/home
/dev/disk1s2 100Gi 54Gi 46Gi 55% 780499 4294186780 0% /Volumes/Jenkins
----------------- 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 = 62476676
max_days_since_modified_short = 1/2
max_days_since_modified_long = 6
------------------
Cleaning in /Volumes/Jenkins/workspace/clean-old-builds/../sofa-framework
PR-2155:
macos_clang_options_release:
last build was on Wed Oct 20 18:31:11 CEST 2021
-> not removed
PR-2391:
macos_clang_options_release:
last build was on Thu Oct 21 01:45:19 CEST 2021
-> not removed
PR-2394:
PR 2394 is closed
-> removed
PR-2404:
PR 2404 is closed
-> removed
PR-2406:
macos_clang_options_release:
last build was on Tue Oct 19 21:16:31 CEST 2021
-> not removed
PR-2411:
macos_clang_options_release:
last build was on Thu Oct 14 16:08:24 CEST 2021 (more than 6 days ago)
-> removed
All valid configs were removed
-> PR-2411 removed
PR-2415:
macos_clang_options_release:
last build was on Thu Oct 14 15:42:23 CEST 2021 (more than 6 days ago)
-> removed
All valid configs were removed
-> PR-2415 removed
PR-2416:
macos_clang_options_release:
last build was on Thu Oct 14 17:02:12 CEST 2021 (more than 6 days ago)
-> removed
All valid configs were removed
-> PR-2416 removed
PR-2421:
macos_clang_options_release:
last build was on Fri Oct 15 16:19:00 CEST 2021
-> not removed
PR-2422:
macos_clang_options_release:
last build was on Fri Oct 15 16:34:35 CEST 2021
-> not removed
PR-2423:
macos_clang_options_release:
last build was on Fri Oct 15 18:49:09 CEST 2021
-> not removed
PR-2425:
macos_clang_options_release:
last build was on Mon Oct 18 12:01:55 CEST 2021
-> not removed
PR-2434:
macos_clang_options_release:
last build was on Wed Oct 20 00:21:17 CEST 2021
-> not removed
PR-2435:
macos_clang_options_release:
last build was on Wed Oct 20 00:05:01 CEST 2021
-> not removed
PR-2436:
macos_clang_options_release:
last build was on Tue Oct 19 17:31:10 CEST 2021
-> not removed
master:
macos_clang_default_release:
last build was on Wed Oct 20 18:47:36 CEST 2021
-> not removed
macos_clang_options_release:
last build was on Wed Oct 20 16:41:04 CEST 2021
-> not removed
-------------------------------------------------------
Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk2s5 50Gi 10Gi 17Gi 39% 488245 521751355 0% /
devfs 187Ki 187Ki 0Bi 100% 648 0 100% /dev
/dev/disk2s1 50Gi 21Gi 17Gi 56% 1025919 521213681 0% /System/Volumes/Data
/dev/disk2s4 50Gi 1.0Gi 17Gi 6% 2 522239598 0% /private/var/vm
map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /System/Volumes/Data/home
/dev/disk1s2 100Gi 32Gi 68Gi 32% 526675 4294440604 0% /Volumes/Jenkins
Finished: SUCCESS