Skip to content

Commit

Permalink
Add workflow for release validation (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
aferrero2707 authored Sep 16, 2024
1 parent 4ca2b18 commit 13a97f5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
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

0 comments on commit 13a97f5

Please sign in to comment.