fix jenkinsfile

This commit is contained in:
Anton Romanov 2022-11-09 11:09:22 +04:00
parent a9ce722e7f
commit 295363e32b

10
Jenkinsfile vendored
View File

@ -57,18 +57,18 @@ pipeline {
agent { docker { image 'romanov73/is:ng-tracker-container-11' } } agent { docker { image 'romanov73/is:ng-tracker-container-11' } }
stages { stages {
stage('Cloning Git') { stage('Cloning Git') {
steps { steps {
git([url: 'https://git.athene.tech/romanov73/example-web.git', branch: 'master']) git([url: 'https://git.athene.tech/romanov73/example-web.git', branch: 'master'])
}
} }
}
stage('log version info') { stage('log version info') {
steps { steps {
sh 'bash ./gradlew test' sh 'bash ./gradlew test'
} }
} }
} }
} //}
// } // }
// } // }
} }