fix(argo): quote test-name parameter values to satisfy strict YAML parsers
The unquoted test name string contains '::' (Rust path separator). Some strict YAML implementations (Go go-yaml when used by certain kustomize paths) interpret it ambiguously. Quoting makes it always a string scalar. Templates were applied directly via 'kubectl apply -f' which uses a permissive parser; the unquoted form worked. Quoting makes them also kustomize-compatible.
This commit is contained in:
@@ -50,7 +50,7 @@ spec:
|
||||
- name: cuda-compute-cap
|
||||
value: "89"
|
||||
- name: test-name
|
||||
value: performance::test_real_data_single_epoch
|
||||
value: "performance::test_real_data_single_epoch"
|
||||
# nsys capture options. Defaults capture the full kernel timeline.
|
||||
# For range-based capture, use `--capture-range=cudaProfilerApi` and
|
||||
# call cudaProfilerStart/Stop in the test (advanced).
|
||||
|
||||
@@ -48,7 +48,7 @@ spec:
|
||||
- name: cuda-compute-cap
|
||||
value: "89" # L40S Ada Lovelace
|
||||
- name: test-name
|
||||
value: iqn_quantile_monotonicity::iqn_multi_quantile_heads_produce_monotonic_estimates
|
||||
value: "iqn_quantile_monotonicity::iqn_multi_quantile_heads_produce_monotonic_estimates"
|
||||
- name: sanitizer-tool
|
||||
value: memcheck # memcheck | racecheck | synccheck | initcheck
|
||||
- name: sanitizer-extra-args
|
||||
|
||||
Reference in New Issue
Block a user