2022-08-10 22:46:48 +00:00
|
|
|
{
|
2022-08-11 09:31:55 +02:00
|
|
|
kind: 'pipeline',
|
2022-12-14 17:00:51 +01:00
|
|
|
type: 'digitalocean',
|
2022-08-11 09:31:55 +02:00
|
|
|
name: 'default',
|
2022-12-14 17:00:51 +01:00
|
|
|
token: {
|
|
|
|
from_secret: 'digitalocean_pat',
|
2022-12-02 21:24:20 +00:00
|
|
|
},
|
2022-08-11 09:31:55 +02:00
|
|
|
platform: {
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
2022-12-14 17:00:51 +01:00
|
|
|
settings: {
|
|
|
|
image: 'docker-20-04',
|
|
|
|
size: 's-1vcpu-512mb-10gb',
|
|
|
|
region: 'fra1',
|
|
|
|
},
|
2022-08-11 09:31:55 +02:00
|
|
|
steps:
|
2022-08-11 23:11:55 +02:00
|
|
|
[
|
|
|
|
{
|
2022-12-03 10:59:34 +01:00
|
|
|
name: 'Hello bash!',
|
2022-12-03 10:58:24 +01:00
|
|
|
image: 'bash:latest',
|
2022-08-11 23:11:55 +02:00
|
|
|
commands: [
|
2022-12-03 10:58:24 +01:00
|
|
|
'Hello from Pipeline VM',
|
2022-08-11 23:11:55 +02:00
|
|
|
],
|
|
|
|
},
|
2022-09-07 22:34:36 +02:00
|
|
|
{
|
2022-12-03 10:59:34 +01:00
|
|
|
name: 'Hello Rust!',
|
2022-12-03 10:58:24 +01:00
|
|
|
image: 'img.kie.rs/jjkiers/rust-dind-cross:1.62-slim',
|
|
|
|
commands: [
|
|
|
|
'cargo run',
|
|
|
|
],
|
2022-08-20 23:23:48 +02:00
|
|
|
},
|
|
|
|
],
|
2022-08-11 09:31:55 +02:00
|
|
|
}
|