2022-08-10 22:46:48 +00:00
|
|
|
{
|
2022-08-11 07:31:55 +00:00
|
|
|
kind: 'pipeline',
|
2022-12-14 16:00:51 +00:00
|
|
|
type: 'digitalocean',
|
2022-08-11 07:31:55 +00:00
|
|
|
name: 'default',
|
2022-12-14 16:00:51 +00:00
|
|
|
token: {
|
|
|
|
from_secret: 'digitalocean_pat',
|
2022-12-02 21:24:20 +00:00
|
|
|
},
|
2022-08-11 07:31:55 +00:00
|
|
|
platform: {
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
2022-12-14 16:02:17 +00:00
|
|
|
server: {
|
2022-12-14 16:00:51 +00:00
|
|
|
image: 'docker-20-04',
|
|
|
|
size: 's-1vcpu-512mb-10gb',
|
|
|
|
region: 'fra1',
|
|
|
|
},
|
2022-08-11 07:31:55 +00:00
|
|
|
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
|
|
|
}
|