diff --git a/Jenkinsfile b/Jenkinsfile index 4bb2409..6142f95 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,15 +17,17 @@ } } steps { - sh 'cd family-scope' - sh 'jupyter-nbconvert --to python --stdout family-scope.ipynb | ipython' - sh 'cp dataset-dimensions.html ../out/' + sh 'cd family-scope && jupyter-nbconvert --to python --stdout family-scope.ipynb | ipython' + sh 'cp family-scope/dataset-dimensions.html out/' } } } post { always { - archiveArtifacts 'out/*' + publishHTML([ + allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, + reportDir: 'out', reportFiles: 'dataset-dimensions.html', + reportName: 'Dataset Family Scope', reportTitles: '']) } } }