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

Jenkins clear ccache stats before each build

parent e6d927e9
......@@ -11,6 +11,7 @@ pipeline {
}
}
steps {
sh 'ccache -z'
sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .'
sh 'git submodule update --init --recursive --force'
......@@ -27,6 +28,7 @@ pipeline {
}
}
steps {
sh 'ccache -z'
sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .'
sh 'git submodule update --init --recursive --force'
......@@ -46,6 +48,7 @@ pipeline {
QMAKESPEC = 'macx-clang'
}
steps {
sh 'ccache -z'
sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .'
sh 'git submodule update --init --recursive --force'
......@@ -66,6 +69,7 @@ pipeline {
QMAKESPEC = 'macx-clang'
}
steps {
sh 'ccache -z'
sh 'git submodule deinit -f .'
sh 'git clean -ff -x -d .'
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