From d2b3b67f5de23eeceb6d866d3cd6306fe0cc4de9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 16 Aug 2023 10:09:27 +0200 Subject: [PATCH] gha: nydus: Actually install kata when `install-kata` is called MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We've been simply doing nothing whenever `install-kata` was called, and that was the intent when we added the placeholder calls. Now, let's install kata, as expected. :-) Signed-off-by: Fabiano FidĂȘncio --- tests/integration/nydus/gha-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/nydus/gha-run.sh b/tests/integration/nydus/gha-run.sh index 86707d504f..a5f856a296 100755 --- a/tests/integration/nydus/gha-run.sh +++ b/tests/integration/nydus/gha-run.sh @@ -29,7 +29,7 @@ function main() { action="${1:-}" case "${action}" in install-dependencies) install_dependencies ;; - install-kata) return 0 ;; + install-kata) install_kata ;; run) run ;; *) >&2 die "Invalid argument" ;; esac