Jsonnet test 3

This commit is contained in:
Jacob Kiers 2022-08-10 22:51:08 +00:00
parent 382c6288cd
commit 8526432849
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
"kind": "pipeline", "kind": "pipeline",
"type": "docker", "type": "docker",
"name": "default", "name": "default",
"platform" { "platform": {
"arch": "amd64" "arch": "amd64"
} }
"steps": [ "steps": [
@ -10,8 +10,8 @@
"name": "check", "name": "check",
"image": "rust:1.62", "image": "rust:1.62",
"commands": [ "commands": [
"echo Hello World from Jsonnet!" "echo Hello World from Jsonnet!",
"cargp check", "cargo check",
] ]
} }
] ]