Jsonnet test 15

This commit is contained in:
Jacob Kiers 2022-08-11 07:41:21 +00:00
parent c91b19c74e
commit 107d042d1e
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,9 @@ local buildForArch(arch) = {
image: 'rust:1.62',
commands: [
'echo Hello World from Jsonnet on ' + arch + '!',
'pwd',
'touch ' + arch + '.txt',
'ls -lah'
'cargo check',
],
};
@ -35,7 +37,8 @@ local check_steps() = [
name: 'build',
image: 'rust:1.62',
commands: [
'ls -lah target/',
'pwd',
'ls -lahR',
],
depends_on: [getStepName(a) for a in archs],
}],