fix jenkinsfile

This commit is contained in:
Anton Romanov 2022-11-09 11:15:15 +04:00
parent 6511c21a89
commit 7d4bb518c6

4
Jenkinsfile vendored
View File

@ -59,13 +59,13 @@ pipeline {
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://gitlab.com/romanov73/ng-tracker.git', branch: 'master'])
} }
} }
stage('Test') { stage('Test') {
steps { steps {
sh 'java -version' sh 'java -version'
sh 'bash ./gradlew test' sh 'bash ./gradlew bootRun -Dng-tracker.check-run=true'
} }
} }
} }