15 lines
312 B
Plaintext
15 lines
312 B
Plaintext
|
let drone = ./types.dhall
|
||
|
|
||
|
let dockerBuild = ./common/dockerBuild.dhall
|
||
|
|
||
|
let dockerHost = ./common/dockerHost.dhall
|
||
|
|
||
|
let dronePL =
|
||
|
drone.Pipeline::{
|
||
|
, name = "test drone config"
|
||
|
, steps = [ dockerBuild "xena/kubermemes" ]
|
||
|
, volumes = Some [ dockerHost.pipeline ]
|
||
|
}
|
||
|
|
||
|
in [ dronePL ]
|