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:
jgrusewski
2026-04-28 22:00:47 +02:00
parent 4d1d8ffa25
commit be0588099f
2 changed files with 2 additions and 2 deletions

View File

@@ -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).

View File

@@ -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