From b893d853a7821b73693c74cf45f81b08a05c4e1a Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Thu, 9 Jan 2025 07:43:20 +0000 Subject: [PATCH] Changing pipeline to use pip container instead of homebrew --- Jenkinsfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8f69ac7..bbbec31 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,15 +2,14 @@ pipeline { agent { kubernetes { cloud 'rsys-devel' - defaultContainer 'homebrew' - inheritFrom 'homebrew' + defaultContainer 'pip' + inheritFrom 'pip' } } stages { stage("install") { steps { - sh 'brew install python@3.11 sphinx-doc' - sh 'python3.11 -m pip install -r requirements.txt' + sh 'python -m pip install -r requirements.txt' } } stage("unit tests") {