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' ) } }