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