fix jenkinsfile
This commit is contained in:
parent
cc4a61b721
commit
a9ce722e7f
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
@ -39,26 +39,36 @@
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
environment {
|
/*agent any
|
||||||
imagename = "romanov73/is:ng-tracker-container-11"
|
|
||||||
registryCredential = ''
|
|
||||||
dockerImage = ''
|
|
||||||
}
|
|
||||||
agent any
|
|
||||||
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('Building image') {
|
stage('Build') {
|
||||||
steps{
|
steps{
|
||||||
script {
|
script {
|
||||||
docker.image('romanov73/is:ng-tracker-container-11').inside {
|
docker.image('romanov73/is:ng-tracker-container-11').inside {
|
||||||
sh 'bash ./gradlew test'
|
sh 'bash ./gradlew test'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}*/
|
||||||
|
|
||||||
|
agent { docker { image 'romanov73/is:ng-tracker-container-11' } }
|
||||||
|
stages {
|
||||||
|
stage('Cloning Git') {
|
||||||
|
steps {
|
||||||
|
git([url: 'https://git.athene.tech/romanov73/example-web.git', branch: 'master'])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('log version info') {
|
||||||
|
steps {
|
||||||
|
sh 'bash ./gradlew test'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user