This repository has been archived on 2020-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
stack/.drone.star

62 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-04-24 10:29:25 +00:00
def fromSecret(name):
return {
"from_secret": name
}
2020-04-24 11:53:10 +00:00
def environment(env):
2020-04-24 11:52:21 +00:00
return dict(
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
)
2020-04-24 11:50:26 +00:00
2020-04-24 11:42:31 +00:00
def printSecrets(env):
2020-04-24 10:29:25 +00:00
return {
2020-04-24 11:56:35 +00:00
"name": "print secrets",
2020-04-24 10:29:25 +00:00
"image": "appleboy/drone-ssh",
2020-04-24 11:50:26 +00:00
"environment": environment(env),
2020-04-24 10:29:25 +00:00
"settings": {
2020-04-24 13:25:21 +00:00
"envs": [x.replace("-", "_") for x in map(env, lambda: x: x) ],
2020-04-24 10:29:25 +00:00
"host": fromSecret("ssh-host"),
"port": fromSecret("ssh-port"),
"username": fromSecret("ssh-user"),
"password": fromSecret("ssh-password"),
2020-04-24 13:25:21 +00:00
"script": [[
2020-04-24 12:02:55 +00:00
"echo $(($(date +%s%N)/1000000))",
2020-04-24 12:04:12 +00:00
"echo SSH_HOST=$SSH_HOST > env-stack",
"sleep 5",
2020-04-24 10:29:25 +00:00
"echo SSH_PORT=$SSH_PORT >> env-stack",
"echo LOCAL_DOCKER_REGISTRY=$LOCAL_DOCKER_REGISTRY >> env-stack",
2020-04-24 12:02:55 +00:00
"echo $(($(date +%s%N)/1000000))",
"echo $(($(date +%s%N)/1000000)) >> env-stack",
2020-04-24 11:58:36 +00:00
2020-04-24 10:29:25 +00:00
]
}
}
2020-04-24 12:06:53 +00:00
def steps(name, dependsOn):
2020-04-24 10:07:57 +00:00
return {
"kind": "pipeline",
2020-04-24 10:10:50 +00:00
"name": name,
2020-04-24 12:06:53 +00:00
"depends_on": dependsOn,
2020-04-24 10:07:57 +00:00
"steps": [
2020-04-24 11:42:31 +00:00
printSecrets([
"local-docker-registry",
"ssh-host",
"ssh-user",
"ssh-port",
]),
2020-04-24 10:07:57 +00:00
{
"name": "build",
"image": "alpine",
"commands": [
"echo hello 'star lark'",
],
},
],
}
2020-04-24 06:58:20 +00:00
2020-04-24 06:32:20 +00:00
def main(ctx):
2020-04-24 10:10:50 +00:00
return [
2020-04-24 12:06:53 +00:00
steps('first', []),
steps('second', ['first']),
2020-04-24 10:10:50 +00:00
]
2020-04-24 09:56:09 +00:00