ci: Clear env to run build

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

2
ci/Jenkinsfile vendored
View File

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