ci: Clear env to run build
dustin/photoframe2/pipeline/head There was a failure building this commit Details

We don't need any of the environment variables Jenkins sets, and some of
them (like `GIT_COMMIT`) interfere with building packages.
pull/1/head
Dustin 2024-12-22 14:26:14 -06:00
parent f560d965cf
commit 428e30c01d
1 changed files with 1 additions and 1 deletions

2
ci/Jenkinsfile vendored
View File

@ -11,7 +11,7 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'make -C aimee-os CONFIGDIR=${PWD} O=/build'
sh 'env -i PATH="${PATH}" make -C aimee-os CONFIGDIR=${PWD} O=/build'
}
}
}