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 workflow for release validation #660

Merged
Merged
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
1 change: 1 addition & 0 deletions jit/glo-release-validation
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
o2-qc --config apricot://{{ apricot_endpoint }}/o2/components/qc/ANY/any/glo-release-validation --remote --shm-metadata-msg-size {{ qc_shm_metadata_msg_size }} -b
12 changes: 12 additions & 0 deletions workflows/readout-dataflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,15 @@ defaults:
panel: "QC_Nodes_Workflows"
index: 25
visibleif: $$qc_remote_enabled === "true"
glo_release_validation_qc_enabled: !public
value: "false"
type: bool
label: "Release Validation"
description: "Enable/disable release validation"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 26
visibleif: $$qc_remote_enabled === "true"
###############################
# TRG Panel
###############################
Expand Down Expand Up @@ -1793,6 +1802,9 @@ roles:
- name: glo-qc-data-size
enabled: "{{ glo_data_size_qc_enabled == 'true' && qc_remote_jit_enabled == 'true'}}"
include: "{{ qc_remote_jit_enabled == 'true' ? dpl.GenerateFromUri('glo-qc-data-size') : '' }}"
- name: glo-release-validation
enabled: "{{ glo_release_validation_qc_enabled == 'true' && qc_remote_jit_enabled == 'true'}}"
include: "{{ qc_remote_jit_enabled == 'true' ? dpl.GenerateFromUri('glo-release-validation') : '' }}"
# When qc_remote_enabled is true, it will try to deploy a qc_remote_workflow for every detector in the list.
# However if the {{detector}}_qc_remote_workflow is none, we deploy a ghost role that does nothing to preserve
# control tree state management.// FIXME: this is probably not needed anymore
Expand Down
Loading