mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-13 04:49:36 +00:00
metrics: Add FIO to gha run script
This PR adds FIO to gha run script. Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
This commit is contained in:
@@ -87,6 +87,14 @@ function run_test_tensorflow() {
|
|||||||
bash tests/metrics/machine_learning/tensorflow.sh 1 20
|
bash tests/metrics/machine_learning/tensorflow.sh 1 20
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function run_test_fio() {
|
||||||
|
info "Running FIO test using ${KATA_HYPERVISOR} hypervisor"
|
||||||
|
# ToDo: remove the exit once the metrics workflow is stable
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
bash storage/fio-k8s/fio-test-ci.sh
|
||||||
|
}
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
action="${1:-}"
|
action="${1:-}"
|
||||||
case "${action}" in
|
case "${action}" in
|
||||||
@@ -97,6 +105,7 @@ function main() {
|
|||||||
run-test-memory-usage-inside-container) run_test_memory_usage_inside_container ;;
|
run-test-memory-usage-inside-container) run_test_memory_usage_inside_container ;;
|
||||||
run-test-blogbench) run_test_blogbench ;;
|
run-test-blogbench) run_test_blogbench ;;
|
||||||
run-test-tensorflow) run_test_tensorflow ;;
|
run-test-tensorflow) run_test_tensorflow ;;
|
||||||
|
run-test-fio) run_test_fio ;;
|
||||||
*) >&2 die "Invalid argument" ;;
|
*) >&2 die "Invalid argument" ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user