Skip to content
Snippets Groups Projects
Commit 1086d4a1 authored by Daniel Agar's avatar Daniel Agar
Browse files

Jenkins clear ccache stats before each build

parent 2fa1702c
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@ pipeline {
stage("${node_name}") {
checkout scm
sh "make clean"
sh "ccache -z"
sh "make nuttx_${node_name}_default"
sh "ccache -s"
archive 'build/*/*.px4'
......@@ -56,6 +57,7 @@ pipeline {
stage("${node_name}") {
checkout scm
sh "make clean"
sh "ccache -z"
sh "make nuttx_${node_name}_default"
sh "ccache -s"
}
......@@ -76,6 +78,7 @@ pipeline {
stage("${node_name}") {
checkout scm
sh "make clean"
sh "ccache -z"
sh "make nuttx_${node_name}"
sh "ccache -s"
}
......@@ -96,6 +99,7 @@ pipeline {
stage("${node_name}") {
checkout scm
sh "make clean"
sh "ccache -z"
sh "make posix_${node_name}"
sh "ccache -s"
}
......@@ -116,6 +120,7 @@ pipeline {
stage("${node_name}") {
checkout scm
sh "make clean"
sh "ccache -z"
sh "make posix_${node_name}"
sh "ccache -s"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment