diff --git a/Jenkinsfile b/Jenkinsfile index 1bf4eaa..90c1482 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,8 +20,9 @@ } } steps { - sh 'cd family-scope && jupyter-nbconvert --to python --stdout family-scope.ipynb | ipython' - sh 'cp family-scope/dataset-dimensions.html out/' + sh 'jupyter-nbconvert --output-dir=out --execute family-scope/family-scope.ipynb' + sh 'jupyter-nbconvert --output-dir=out --execute family-scope/geo-scope.ipynb' + sh 'cp family-scope/*.html out/' } } stage('Dataset size report') { @@ -41,8 +42,8 @@ always { publishHTML([ allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, - reportDir: 'out', reportFiles: 'dataset-dimensions.html,dataset-stats.html', - reportName: 'Dataset Reports', reportTitles: 'Family Scope,Size']) + reportDir: 'out', reportFiles: 'dataset-dimensions.html,dataset-dimensions-geo.html,dataset-stats.html', + reportName: 'Dataset Reports', reportTitles: 'Family Scope,Geo Scope,Size']) } } }