From 1170ebc4f83e924387c66a8a8d0560015cef57fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20M=C3=BCller?= Date: Wed, 8 Jan 2025 10:59:10 +0100 Subject: [PATCH] Fix execution of tests on riscv64 --- pkg/plugin/plugin_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/plugin/plugin_test.go b/pkg/plugin/plugin_test.go index e8aead6ae..bd8b036a2 100644 --- a/pkg/plugin/plugin_test.go +++ b/pkg/plugin/plugin_test.go @@ -106,6 +106,8 @@ func TestPlatformPrepareCommand(t *testing.T) { osStrCmp = "linux-arm64" } else if os == "linux" && arch == "ppc64le" { osStrCmp = "linux-ppc64le" + } else if os == "linux" && arch == "riscv64" { + osStrCmp = "linux-riscv64" } else if os == "linux" && arch == "s390x" { osStrCmp = "linux-s390x" } else if os == "windows" && arch == "amd64" {