ci: Run core tests groups workflow on amd64 and arm64 runners. (#25695)

This commit is contained in:
James Rasell
2025-04-17 15:16:29 +01:00
committed by GitHub
parent c44f847cbb
commit c85c723336
8 changed files with 79 additions and 43 deletions

View File

@@ -10,6 +10,7 @@ import (
"os/exec"
"path/filepath"
"regexp"
"runtime"
"strconv"
"strings"
"syscall"
@@ -37,7 +38,11 @@ import (
)
func init() {
executorFactories["LibcontainerExecutor"] = libcontainerFactory
// There are no busybox arm64 images to download. These tests will need to
// be reworked, or a custom build performed.
if runtime.GOARCH == "amd64" {
executorFactories["LibcontainerExecutor"] = libcontainerFactory
}
}
var libcontainerFactory = executorFactory{