Started by upstream project "clean-old-builds" build number 451 originally caused by: Started by timer Running as SYSTEM [EnvInject] - Loading node environment variables. Building remotely on _launcher_ 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/jenkins8649208035534317485.sh --------------- Clone/update CI scripts --------------- pwd = /builds/workspace/clean-old-builds HEAD is now at 900a14f FIX Python detection on MacOS 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 4825ea7..cd3a099 master -> origin/master Auto packing the repository in background for optimum performance. See "git help gc" for manual housekeeping. error: The last gc run reported the following. Please correct the root cause and remove .git/gc.log. Automatic cleanup will not be performed until the file is removed. error: pack-objects died of signal 15 error: failed to run repack Updating 4825ea7..cd3a099 Fast-forward Auto packing the repository in background for optimum performance. See "git help gc" for manual housekeeping. error: The last gc run reported the following. Please correct the root cause and remove .git/gc.log. Automatic cleanup will not be performed until the file is removed. error: pack-objects died of signal 15 error: failed to run repack SofaGui/CMakeLists.txt | 75 +++++----- SofaGui/config.h.in | 1 + .../sofa/core/objectmodel/DetachNodeEvent.h | 2 +- SofaKernel/framework/sofa/core/objectmodel/Event.h | 12 +- .../framework/sofa/core/objectmodel/GUIEvent.h | 2 +- .../sofa/core/objectmodel/HapticDeviceEvent.h | 2 +- .../framework/sofa/core/objectmodel/IdleEvent.cpp | 7 +- .../framework/sofa/core/objectmodel/IdleEvent.h | 2 +- .../sofa/core/objectmodel/JoystickEvent.h | 2 +- .../sofa/core/objectmodel/KeypressedEvent.h | 2 +- .../sofa/core/objectmodel/KeyreleasedEvent.h | 2 +- .../framework/sofa/core/objectmodel/MouseEvent.h | 2 +- .../framework/sofa/core/objectmodel/ScriptEvent.h | 4 +- SofaKernel/framework/sofa/core/visual/DrawTool.h | 4 + .../framework/sofa/core/visual/DrawToolGL.cpp | 8 + SofaKernel/framework/sofa/core/visual/DrawToolGL.h | 4 + .../framework/sofa/simulation/AnimateBeginEvent.h | 2 +- .../framework/sofa/simulation/AnimateEndEvent.h | 2 +- .../sofa/simulation/CollisionBeginEvent.h | 2 +- .../framework/sofa/simulation/CollisionEndEvent.h | 2 +- .../sofa/simulation/IntegrateBeginEvent.h | 2 +- .../framework/sofa/simulation/IntegrateEndEvent.h | 2 +- SofaKernel/framework/sofa/simulation/PauseEvent.h | 2 +- .../framework/sofa/simulation/PositionEvent.h | 2 +- .../sofa/simulation/UpdateMappingEndEvent.h | 2 +- .../framework/sofa/simulation/VisualVisitor.h | 1 - applications/plugins/ARTrack/ARTrackEvent.h | 1 + applications/plugins/CGALPlugin/CylinderMesh.inl | 84 ++++------- .../plugins/MultiThreading/src/DataExchange.h | 2 +- .../plugins/SofaPython/PythonScriptEvent.h | 2 +- .../plugins/SofaSimpleGUI/VisualPickVisitor.cpp | 4 +- applications/sofa/gui/BaseGLViewer.cpp | 56 +++++++ applications/sofa/gui/BaseGLViewer.h | 67 +++++++++ applications/sofa/gui/BaseViewer.cpp | 64 +------- applications/sofa/gui/BaseViewer.h | 27 ++-- applications/sofa/gui/ColourPickingVisitor.h | 6 +- applications/sofa/gui/Main.cpp | 7 + applications/sofa/gui/PickHandler.cpp | 67 +-------- applications/sofa/gui/PickHandler.h | 23 +-- applications/sofa/gui/qt/CMakeLists.txt | 25 +--- applications/sofa/gui/qt/GLPickHandler.cpp | 147 +++++++++++++++++++ applications/sofa/gui/qt/GLPickHandler.h | 83 +++++++++++ applications/sofa/gui/qt/gl/CMakeLists.txt | 45 ++++++ applications/sofa/gui/qt/gl/SofaGUIQtOpenGL.h | 43 ++++++ .../sofa/gui/qt/gl/initSofaGUIQtOpenGL.cpp | 44 ++++++ applications/sofa/gui/qt/viewer/EngineBackend.h | 71 +++++++++ applications/sofa/gui/qt/viewer/GLBackend.cpp | 161 +++++++++++++++++++++ applications/sofa/gui/qt/viewer/GLBackend.h | 85 +++++++++++ applications/sofa/gui/qt/viewer/OglModelPolicy.cpp | 57 ++++++++ applications/sofa/gui/qt/viewer/OglModelPolicy.h | 70 +++++++++ applications/sofa/gui/qt/viewer/SofaViewer.cpp | 94 +++++++++--- applications/sofa/gui/qt/viewer/SofaViewer.h | 28 ++-- .../sofa/gui/qt/viewer/VisualModelPolicy.cpp | 48 ++++++ .../sofa/gui/qt/viewer/VisualModelPolicy.h | 36 +---- applications/sofa/gui/qt/viewer/qgl/QtGLViewer.cpp | 59 ++------ applications/sofa/gui/qt/viewer/qgl/QtGLViewer.h | 10 +- applications/sofa/gui/qt/viewer/qt/QtViewer.cpp | 61 ++------ applications/sofa/gui/qt/viewer/qt/QtViewer.h | 10 +- modules/SofaUserInteraction/MouseInteractor.cpp | 19 +-- 59 files changed, 1267 insertions(+), 489 deletions(-) create mode 100644 applications/sofa/gui/BaseGLViewer.cpp create mode 100644 applications/sofa/gui/BaseGLViewer.h create mode 100644 applications/sofa/gui/qt/GLPickHandler.cpp create mode 100644 applications/sofa/gui/qt/GLPickHandler.h create mode 100644 applications/sofa/gui/qt/gl/CMakeLists.txt create mode 100644 applications/sofa/gui/qt/gl/SofaGUIQtOpenGL.h create mode 100644 applications/sofa/gui/qt/gl/initSofaGUIQtOpenGL.cpp create mode 100644 applications/sofa/gui/qt/viewer/EngineBackend.h create mode 100644 applications/sofa/gui/qt/viewer/GLBackend.cpp create mode 100644 applications/sofa/gui/qt/viewer/GLBackend.h create mode 100644 applications/sofa/gui/qt/viewer/OglModelPolicy.cpp create mode 100644 applications/sofa/gui/qt/viewer/OglModelPolicy.h create mode 100644 applications/sofa/gui/qt/viewer/VisualModelPolicy.cpp ------------------------------------------------------- Filesystem Size Used Avail Use% Mounted on udev 2.0G 0 2.0G 0% /dev tmpfs 396M 41M 355M 11% /run /dev/vda1 18G 7.4G 9.4G 45% / tmpfs 2.0G 108K 2.0G 1% /dev/shm tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup /dev/vdb1 20G 5.4G 14G 29% /builds tmpfs 396M 24K 396M 1% /run/user/111 tmpfs 396M 0 396M 0% /run/user/1000 ----------------- clean-old-builds.sh ----------------- Cleaning in /builds/workspace/clean-old-builds/../launcher/sofa-framework 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_ master: Launcher detected. last launch: Sat Aug 17 02:14:30 CEST 2019 -> not removed PR-1121: PR 1121 is closed -> removed PR-1122: Launcher detected. last launch: Wed Aug 21 09:56:17 CEST 2019 -> not removed PR-1124: PR 1124 is closed -> removed PR-1125: Launcher detected. last launch: Wed Aug 21 09:17:00 CEST 2019 -> not removed PR-1126: Launcher detected. last launch: Wed Aug 21 11:29:54 CEST 2019 -> not removed PR-1127: Launcher detected. last launch: Wed Aug 21 11:39:14 CEST 2019 -> not removed PR-1128: Launcher detected. last launch: Thu Aug 22 15:20:13 CEST 2019 -> not removed PR-1129: Launcher detected. last launch: Thu Aug 22 15:45:27 CEST 2019 -> not removed ------------------------------------------------------- Filesystem Size Used Avail Use% Mounted on udev 2.0G 0 2.0G 0% /dev tmpfs 396M 41M 355M 11% /run /dev/vda1 18G 7.4G 9.4G 45% / tmpfs 2.0G 108K 2.0G 1% /dev/shm tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup /dev/vdb1 20G 4.5G 15G 24% /builds tmpfs 396M 24K 396M 1% /run/user/111 tmpfs 396M 0 396M 0% /run/user/1000 Finished: SUCCESS