build: Remove job directory on ARM64 build

This prevents the builder from running out of disk space.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2020-08-10 14:18:44 +01:00
parent 05c6136790
commit c5a03d5ad4

5
Jenkinsfile vendored
View File

@ -102,6 +102,11 @@ pipeline{
}
}
}
post {
always {
deleteDir()
}
}
}
stage ('Worker build (musl)') {
agent { node { label 'bionic' } }