mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
Jenkins clear ccache stats before each build
This commit is contained in:
parent
2fa1702c71
commit
1086d4a1e4
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -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"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user