Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get output from modular ingests before merge in Jenkins job #593

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ pipeline {
'''
}
}
// Download source data to be transformed
stage('download') {
steps {
sh '''
Expand All @@ -60,6 +61,14 @@ pipeline {
// '''
}
}
// Download output of modular ingests separately
stage('download-modular') {
steps {
sh '''
poetry run python scripts/download_modular.py
'''
}
}
stage('merge') {
steps {
sh 'poetry run ingest merge'
Expand Down
Loading
Loading