Started by user jenkins Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node Running on Jenkins in /var/lib/jenkins/workspace/todo-list-desenvolvimento [Pipeline] { [Pipeline] withEnv [Pipeline] { [Pipeline] stage [Pipeline] { (Carregando o ENV de desenvolvimento) [Pipeline] configFileProvider provisioning config files... not able to provide the file [ManagedFile: id=.env, targetLocation=null, variable=env], can't be resolved by any provider - maybe it got deleted by an administrator? [Pipeline] // configFileProvider [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Derrubando o container antigo) Stage "Derrubando o container antigo" skipped due to earlier failure(s) [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Subindo o container novo) Stage "Subindo o container novo" skipped due to earlier failure(s) [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Notificando o usuario) Stage "Notificando o usuario" skipped due to earlier failure(s) [Pipeline] } [Pipeline] // stage [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline ERROR: not able to provide the file [ManagedFile: id=.env, targetLocation=null, variable=env], can't be resolved by any provider - maybe it got deleted by an administrator? Finished: FAILURE
Erro encontrado no código abaixo
pipeline {
environment {
dockerImage = "${image}"
}
agent any
stages {
stage('Carregando o ENV de desenvolvimento') {
steps {
configFileProvider([configFile(fileId: '.env-dev', variable: 'env')]) {
sh 'cat $env > .env'
}
}
}
stage('Derrubando o container antigo') {
steps {
script {
try {
sh 'docker rm -f django-todolist-dev'
} catch (Exception e) {
sh "echo $e"
}
}
}
}
stage('Subindo o container novo') {
steps {
script {
try {
sh 'docker run -d -p 81:8000 -v /var/run/mysqld/mysqld.sock:/var/run/mysqld/mysqld.sock -v /var/lib/jenkins/workspace/jenkins-todo-list-desenvolvimento/.env:/usr/src/app/to_do/.env --name=django-todolist-dev ' + dockerImage + ':latest'
} catch (Exception e) {
slackSend (color: 'error', message: "[ FALHA ] Não foi possivel subir o container - ${BUILD_URL} em ${currentBuild.duration}s", tokenCredentialId: 'slack-token')
sh "echo $e"
currentBuild.result = 'ABORTED'
error('Erro')
}
}
}
}
stage('Notificando o usuario') {
steps {
slackSend (color: 'good', message: '[ Sucesso ] O novo build esta disponivel em: http://192.168.33.10:81/ ', tokenCredentialId: 'slack-token')
}
}
}
}