Try jsonnet pipeline
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Jacob Kiers 2022-08-10 22:46:48 +00:00
parent afe61704db
commit a6eae9cedd
1 changed files with 17 additions and 0 deletions

17
.drone.jsonnet Normal file
View File

@ -0,0 +1,17 @@
{
"kind": "pipeline",
"type": "docker",
"name": "default",
"platform" {
"arch": "amd64"
}
"steps": [
{
"name": "check",
"image": "rust:1.62",
"commands": [
"cargp check",
]
}
]
}