From ef9dc3fd1af473201941795f843b808706957792 Mon Sep 17 00:00:00 2001 From: Riz Urian <98958099+rizjosel@users.noreply.github.com> Date: Sat, 27 Dec 2025 10:14:31 +0800 Subject: [PATCH] Update Jenkinsfile.pr Signed-off-by: Riz Urian <98958099+rizjosel@users.noreply.github.com> --- Jenkinsfile.pr | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile.pr b/Jenkinsfile.pr index c0913c4e2..092467f38 100644 --- a/Jenkinsfile.pr +++ b/Jenkinsfile.pr @@ -14,11 +14,17 @@ pipeline { steps { setGitHubPullRequestStatus( context: 'Jenkins CI', - status: 'PENDING' + state: 'PENDING' ) } } + stage('List Workspace') { + steps { + sh 'ls -l' + } + } + stage('CI / Unit Tests') { steps { sh './gradlew clean build -x test' @@ -52,13 +58,13 @@ pipeline { success { setGitHubPullRequestStatus( context: 'Jenkins CI', - status: 'SUCCESS' + state: 'SUCCESS' ) } failure { setGitHubPullRequestStatus( context: 'Jenkins CI', - status: 'FAILURE' + state: 'FAILURE' ) } }