
This PS adds test artifacts to be used to validate Jarvis operation: The Open5GS 5G SA Core. Change-Id: I33d3ac2b2c584320aa3b0ca928657496ccd96303 Signed-off-by: Pete Birley <pete@port.direct>
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
for chart_path in `find ./tools/gate/jarvis/5G-SA-core -name Chart.yaml -exec dirname {} \;`; do
|
|
helm lint ${chart_path}
|
|
helm template ${chart_path} > /dev/null
|
|
done
|