From 5ae27df0d606a2c49dacf30a32388717bdb12ea5 Mon Sep 17 00:00:00 2001 From: joungmin Date: Thu, 19 Feb 2026 13:16:07 +0900 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 15615de..eb0cf90 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { echo '๐Ÿ“‹ Running linters...' sh ''' - source venv/bin/activate + . venv/bin/activate # Pylint - Python linting with custom config pylint --rcfile=.pylintrc \ @@ -121,7 +121,7 @@ pipeline { withSonarQubeEnv('SonarQube') { sh ''' - source venv/bin/activate + . venv/bin/activate sonar-scanner \ -Dsonar.projectKey=openclaw \ @@ -151,7 +151,7 @@ pipeline { withCredentials([string(credentialsId: 'snyk-token', variable: 'SNYK_TOKEN')]) { sh ''' - source venv/bin/activate + . venv/bin/activate # Snyk test for Python dependencies snyk test \ @@ -181,7 +181,7 @@ pipeline { echo '๐Ÿงช Running unit tests...' sh ''' - source venv/bin/activate + . venv/bin/activate pytest tests/ \ -v \ @@ -222,7 +222,7 @@ pipeline { echo '๐Ÿ” Running security unit tests...' sh ''' - source venv/bin/activate + . venv/bin/activate pytest tests/test_security.py \ -v \ @@ -245,7 +245,7 @@ pipeline { echo '๐Ÿ”— Running integration tests...' sh ''' - source venv/bin/activate + . venv/bin/activate # Oracle connection test python3 -c " @@ -285,7 +285,7 @@ pipeline { echo '๐Ÿ“ฆ Building application...' sh ''' - source venv/bin/activate + . venv/bin/activate # Freeze dependencies pip freeze > requirements.locked.txt @@ -324,7 +324,7 @@ pipeline { remoteDirectory: '/home/joungmin/openclaw', execCommand: ''' cd /home/joungmin/openclaw - source venv/bin/activate + . venv/bin/activate pip install -r requirements.txt pytest tests/ --tb=short pytest tests/test_security.py --tb=short