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

Add support pipeline test extra flags #102

Merged
merged 3 commits into from
May 27, 2024
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/run-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
pipeline_file:
required: true
type: string
pipeline_extra_flags:
required: false
type: string
no_gpu:
required: false
type: boolean
Expand Down Expand Up @@ -79,7 +82,7 @@ jobs:
python -m snakemake ${{ (inputs.dry_run && '-n') || '' }} \
-j 2 --directory ${{inputs.pipeline_directory}} \
${{ (endsWith(inputs.pipeline_config, 'ml') && '--configfile') || '' }} ${{ inputs.pipeline_config }} \
--snakefile ${{inputs.pipeline_file}} --show-failed-logs -F
--snakefile ${{inputs.pipeline_file}} --show-failed-logs -F ${{ inputs.pipeline_extra_flags }}
shell: micromamba-shell {0}
- name: Run post pipeline cmd
if: inputs.postrun_cmd
Expand Down