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 _launcher_ (standard binaries_standard minimal builder binaries_minimal binaries_full cleanable full) in workspace /builds/workspace/clean-old-builds
[EnvInject] - Inject global passwords.
[EnvInject] - Mask passwords that will be passed as build parameters.
[clean-old-builds] $ bash /tmp/jenkins6293376134500298922.sh

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

------------- Clone/update reference_repo/sofa --------------
Checking /builds/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
udev            975M     0  975M   0% /dev
tmpfs           200M  896K  199M   1% /run
/dev/vda2        38G  4.9G   31G  14% /
tmpfs           997M     0  997M   0% /dev/shm
tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs           997M     0  997M   0% /sys/fs/cgroup
/dev/vdb1        40G   28G   11G  73% /builds
tmpfs           200M     0  200M   0% /run/user/1000
----------------- clean-old-builds.sh -----------------
ENV VARS: load /builds/workspace/clean-old-builds/ci/scripts/env/default
ENV VARS: load node specific /builds/workspace/clean-old-builds/ci/scripts/env/_launcher_
python3
------------------
free_space = 10788072
max_days_since_modified_short = 1/2
max_days_since_modified_long = 6
------------------

Cleaning in /builds/workspace/clean-old-builds/../sofa-custom

Cleaning in /builds/workspace/clean-old-builds/../sofa-custom@2

Cleaning in /builds/workspace/clean-old-builds/../launcher/sofa-framework
  master:
  Launcher detected.
    last launch: Sat Oct 16 03:47:20 CEST 2021
    -> not removed
  PR-2155:
  Launcher detected.
    last launch: Tue Oct 19 14:19:14 CEST 2021
    -> not removed
  PR-2377:
  Launcher detected.
    last launch: Thu Oct 21 00:08:40 CEST 2021
    -> not removed
  PR-2391:
  Launcher detected.
    last launch: Thu Oct 21 01:41:41 CEST 2021
    -> not removed
  PR-2393:
  Launcher detected.
    last launch: Thu Oct 21 01:49:14 CEST 2021
    -> not removed
  PR-2394:
    PR 2394 is closed
    -> removed
  PR-2399:
  Launcher detected.
    last launch: Wed Oct 20 11:16:49 CEST 2021
    -> not removed
  PR-2404:
    PR 2404 is closed
    -> removed
  PR-2406:
  Launcher detected.
    last launch: Tue Oct 19 20:33:17 CEST 2021
    -> not removed
  PR-2415:
  Launcher detected.
    last launch: Thu Oct 14 12:05:45 CEST 2021   (more than 6 days ago)
    -> removed
  PR-2416:
  Launcher detected.
    last launch: Thu Oct 14 13:41:41 CEST 2021   (more than 6 days ago)
    -> removed
  PR-2419:
  Launcher detected.
    last launch: Fri Oct 15 10:29:50 CEST 2021
    -> not removed
  PR-2421:
  Launcher detected.
    last launch: Fri Oct 15 11:23:38 CEST 2021
    -> not removed
  PR-2422:
  Launcher detected.
    last launch: Fri Oct 15 12:24:41 CEST 2021
    -> not removed
  PR-2423:
  Launcher detected.
    last launch: Fri Oct 15 14:47:24 CEST 2021
    -> not removed
  PR-2425:
  Launcher detected.
    last launch: Fri Oct 15 17:37:34 CEST 2021
    -> not removed
  PR-2427:
  Launcher detected.
    last launch: Mon Oct 18 10:21:38 CEST 2021
    -> not removed
  PR-2428:
  Launcher detected.
    last launch: Mon Oct 18 11:01:45 CEST 2021
    -> not removed
  PR-2429:
  Launcher detected.
    last launch: Mon Oct 18 14:05:42 CEST 2021
    -> not removed
  PR-2434:
  Launcher detected.
    last launch: Tue Oct 19 14:34:33 CEST 2021
    -> not removed
  PR-2435:
  Launcher detected.
    last launch: Tue Oct 19 15:37:19 CEST 2021
    -> not removed
  PR-2436:
  Launcher detected.
    last launch: Tue Oct 19 16:01:44 CEST 2021
    -> not removed
  PR-2437:
  Launcher detected.
    last launch: Wed Oct 20 11:55:29 CEST 2021
    -> not removed
  PR-2438:
  Launcher detected.
    last launch: Wed Oct 20 14:01:51 CEST 2021
    -> not removed
-------------------------------------------------------
Filesystem      Size  Used Avail Use% Mounted on
udev            975M     0  975M   0% /dev
tmpfs           200M  896K  199M   1% /run
/dev/vda2        38G  4.9G   31G  14% /
tmpfs           997M     0  997M   0% /dev/shm
tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs           997M     0  997M   0% /sys/fs/cgroup
/dev/vdb1        40G   24G   14G  65% /builds
tmpfs           200M     0  200M   0% /run/user/1000
Finished: SUCCESS