Jenkinsfile Hotfix: install GitPython for progress script (#1612)

This commit is contained in:
Derek Hensley 2024-04-06 21:22:30 -07:00 committed by GitHub
parent 68c7e46a6a
commit f36681d697
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

1
Jenkinsfile vendored
View File

@ -23,6 +23,7 @@ pipeline {
stage('Install Python dependencies') {
steps {
sh 'bash -c "make -j venv"'
sh '.venv/bin/python3 -m pip install GitPython' // Progress script from jenkins requires GitPython
}
}
stage('Copy ROM') {