wait step
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles Bradshaw 2020-07-28 15:35:58 +01:00
parent ece961ed00
commit afea79d33b
1 changed files with 11 additions and 1 deletions

View File

@ -26,6 +26,13 @@ local images = {
],
},
},
wait(delay): {
image: 'alpine',
name: 'wait',
commands: [
'sleep %s' % delay,
],
}
};
[
{
@ -70,7 +77,10 @@ local images = {
},
],
steps:[
images.scp('/stack/root'),
images.scp(
'/stack/root'
),
images.wait(15),
],
}
]