summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2024-04-06 21:22:30 -0700
committerGitHub <noreply@github.com>2024-04-06 21:22:30 -0700
commitf36681d6978dfe219acb035b60efe615799896d5 (patch)
tree82af3ef16a41c2e0b299c2cc5cd9c44c8493a260 /Jenkinsfile
parent68c7e46a6a2e5bf727307c9c08eae8b5594884da (diff)
Jenkinsfile Hotfix: install GitPython for progress script (#1612)
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 52b9ae0a3..95c638771 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -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') {