From 2d7bd42928c3fe5452245696bbc6257d1a8f215d Mon Sep 17 00:00:00 2001 From: Sanchit Vijay Date: Fri, 12 Apr 2024 17:29:15 -0400 Subject: [PATCH] trying to fail the pipeline --- ci/Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 70ec158..aecf423 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -25,6 +25,7 @@ pipeline { stage('Create venv'){ steps { sh 'python3 -m venv .venv' + sh 'exit 1' } } @@ -72,6 +73,7 @@ pipeline { sh 'pip install mypy' catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE'){ sh 'python3 -m mypy -p src.grag --junit-xml mypy-report.xml' + } } }