drone-test/.drone.jsonnet

18 lines
345 B
Plaintext
Raw Normal View History

2022-08-10 22:46:48 +00:00
{
"kind": "pipeline",
"type": "docker",
"name": "default",
2022-08-10 22:51:08 +00:00
"platform": {
2022-08-10 22:46:48 +00:00
"arch": "amd64"
}
"steps": [
{
"name": "check",
"image": "rust:1.62",
"commands": [
2022-08-10 22:51:08 +00:00
"echo Hello World from Jsonnet!",
"cargo check",
2022-08-10 22:46:48 +00:00
]
}
]
}