Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): resolve systest failures on arm #8503

Merged
merged 17 commits into from
Dec 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add comment in t.go
  • Loading branch information
joshua-goldstein committed Dec 12, 2022
commit 634db0c7415029ff477525aff14164ee89c2d0c0
3 changes: 2 additions & 1 deletion t/t.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ var (
"comma separated list of packages that needs to be skipped. "+
"Package Check uses string.Contains(). Please check the flag carefully")
runCoverage = pflag.Bool("coverage", false, "Set true to calculate test coverage")
arch = pflag.String("arch", "x86", "Machine architecture (required for systest/export test)")
// used to select minio image in systest/{export,backup}
arch = pflag.String("arch", "x86", "Machine architecture. Possible values are [arm64, x86].")
)

func commandWithContext(ctx context.Context, args ...string) *exec.Cmd {
Expand Down