Jsonnet test 9

This commit is contained in:
Jacob Kiers 2022-08-10 23:11:42 +00:00
parent d2175367a6
commit 598f086909
1 changed files with 4 additions and 2 deletions

View File

@ -4,9 +4,11 @@ local archs = [
"x86_64-pc-windows-gnu",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl"
]
];
local getStepName(arch) = "check-"+arch;
local getStepName(arch) = {
"check-"+arch
};
local buildForArch(arch) = {
"name": getStepName(arch),