Review Day 78 of my 100 days of DevOps Task




I’m actually not sure what pipeline you ran based on the info you’ve supplied, so I’m not sure why you got your error :frowning:

The pipeline will need to look something like this, assuming you’ve:

  • Installed the right version of java on stapp01
  • have set up the agent to run as user sarah, which owns all of the needed directories:
pipeline {
    agent { label 'stapp01' }

      stages {
        stage('Deploy') {
            steps {
                script {
                    sh '''
                        git checkout  ${BRANCH}
                        get pull origin  ${BRANCH}
                    '''
                }
            }
        }
    }
}

So i keep getting this error:“”“Validation file not found on App Server”“” When build ran by checker are successfull. So the question remains what validation file cause this task is no different from the day 77 which i passed just the parameterized section that distingushes both tasks.