diff --git a/Jenkinsfile b/Jenkinsfile index 4f5fd07..c3c5416 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,14 +7,14 @@ steps { echo 'Building..' sh './build.sh' - archiveArtifacts artifacts: './build/hello*', fingerprint: true + archiveArtifacts artifacts: 'build/hello*', fingerprint: true } } stage('Test') { steps { echo 'Testing..' sh 'make test || true' - junit './build/*.xml' + junit 'build/*.xml' } } stage('Deploy') {