Update Jenkinsfile

Signed-off-by: prankumargrid <prankumar@griddynamics.com>
This commit is contained in:
prankumargrid 2025-05-01 15:59:27 +05:30 committed by GitHub
parent 9bc6c07062
commit 9344fdd0f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
Jenkinsfile vendored
View file

@ -11,6 +11,14 @@ pipeline {
COMMIT = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim()
}
stages {
stage('Install Docker') {
steps {
sh '''
apt-get update
apt-get install -y docker.io
'''
}
}
stage('Checkstyle') {
when {
not { branch 'main' }