add cleanup post step (#3)

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub 2019-04-09 10:39:44 +02:00 committed by Andrea Franz
parent 1a13c76360
commit 64f4cc0c4a
2 changed files with 14 additions and 0 deletions

View File

@ -65,4 +65,11 @@ pipeline {
} } } }
} }
} }
post {
always { script {
dir(env.PROJECT) {
sh 'make clean'
}
} }
}
} }

View File

@ -50,4 +50,11 @@ pipeline {
} } } }
} }
} }
post {
always { script {
dir(env.PROJECT) {
sh 'make clean'
}
} }
}
} }