Commit 04e0dce3 authored by Daniel Agar's avatar Daniel Agar

Jenkins clear ccache stats before each build

parent e6d927e9
...@@ -11,6 +11,7 @@ pipeline { ...@@ -11,6 +11,7 @@ pipeline {
} }
} }
steps { steps {
sh 'ccache -z'
sh 'git submodule deinit -f .' sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .' sh 'git clean -ff -x -d .'
sh 'git submodule update --init --recursive --force' sh 'git submodule update --init --recursive --force'
...@@ -27,6 +28,7 @@ pipeline { ...@@ -27,6 +28,7 @@ pipeline {
} }
} }
steps { steps {
sh 'ccache -z'
sh 'git submodule deinit -f .' sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .' sh 'git clean -ff -x -d .'
sh 'git submodule update --init --recursive --force' sh 'git submodule update --init --recursive --force'
...@@ -46,6 +48,7 @@ pipeline { ...@@ -46,6 +48,7 @@ pipeline {
QMAKESPEC = 'macx-clang' QMAKESPEC = 'macx-clang'
} }
steps { steps {
sh 'ccache -z'
sh 'git submodule deinit -f .' sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .' sh 'git clean -ff -x -d .'
sh 'git submodule update --init --recursive --force' sh 'git submodule update --init --recursive --force'
...@@ -66,6 +69,7 @@ pipeline { ...@@ -66,6 +69,7 @@ pipeline {
QMAKESPEC = 'macx-clang' QMAKESPEC = 'macx-clang'
} }
steps { steps {
sh 'ccache -z'
sh 'git submodule deinit -f .' sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .' sh 'git clean -ff -x -d .'
sh 'git submodule update --init --recursive --force' sh 'git submodule update --init --recursive --force'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment