drone-test/.drone.jsonnet

29 lines
464 B
Plaintext
Raw Normal View History

2022-08-10 22:46:48 +00:00
{
kind: 'pipeline',
2022-12-02 21:20:24 +00:00
type: 'vm',
name: 'default',
2022-12-02 21:23:44 +00:00
pool: {
2022-12-02 21:24:20 +00:00
use: 'drone-ci-pool',
},
platform: {
arch: 'amd64',
},
steps:
[
{
name: 'Hello bash!',
image: 'bash:latest',
commands: [
'Hello from Pipeline VM',
],
},
{
name: 'Hello Rust!',
image: 'img.kie.rs/jjkiers/rust-dind-cross:1.62-slim',
commands: [
'cargo run',
],
},
],
}