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