From f36681d6978dfe219acb035b60efe615799896d5 Mon Sep 17 00:00:00 2001 From: Derek Hensley Date: Sat, 6 Apr 2024 21:22:30 -0700 Subject: [PATCH] Jenkinsfile Hotfix: install GitPython for progress script (#1612) --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 52b9ae0a3f..95c638771a 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') {