fix: removed redundant step from drone
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
dbe2734076
commit
f11b192cbd
|
@ -180,39 +180,24 @@ local images = {
|
||||||
images.wait(15),
|
images.wait(15),
|
||||||
util.compose(
|
util.compose(
|
||||||
std.map(
|
std.map(
|
||||||
function(secret) util.printEnv('afile', secret),
|
function(s) util.envSet(s),
|
||||||
publicSecrets,
|
publicSecrets + secretSecrets
|
||||||
)
|
) +
|
||||||
)(
|
std.map(
|
||||||
images.ssh {
|
function(s) function(step) step {
|
||||||
name: 'will print ssh-host again',
|
settings +: {
|
||||||
settings +: {
|
script +: [
|
||||||
script +: [
|
|
||||||
'rm afile'
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
),
|
|
||||||
util.compose(
|
|
||||||
std.map(
|
|
||||||
function(s) util.envSet(s),
|
|
||||||
publicSecrets + secretSecrets
|
|
||||||
) +
|
|
||||||
std.map(
|
|
||||||
function(s) function(step) step {
|
|
||||||
settings +: {
|
|
||||||
script +: [
|
|
||||||
|
|
||||||
'export %(env)s="$${%(env)s}"' % {
|
'export %(env)s="$${%(env)s}"' % {
|
||||||
env: util.environment(s),
|
env: util.environment(s),
|
||||||
},
|
},
|
||||||
'echo "$${%s}"' % util.environment(s),
|
'echo "$${%s}"' % util.environment(s),
|
||||||
],
|
],
|
||||||
},
|
|
||||||
},
|
},
|
||||||
publicSecrets + secretSecrets
|
},
|
||||||
)
|
publicSecrets + secretSecrets
|
||||||
)
|
)
|
||||||
|
)
|
||||||
(
|
(
|
||||||
images.ssh {
|
images.ssh {
|
||||||
name: 'deploy squid',
|
name: 'deploy squid',
|
||||||
|
|
|
@ -29,39 +29,6 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- sleep 15
|
- sleep 15
|
||||||
|
|
||||||
- name: will print ssh-host again
|
|
||||||
image: appleboy/drone-ssh
|
|
||||||
settings:
|
|
||||||
envs:
|
|
||||||
- drone_tag
|
|
||||||
- drone_commit
|
|
||||||
- drone_build_number
|
|
||||||
- drone_repo_name
|
|
||||||
- drone_repo_namespace
|
|
||||||
- ssh_host
|
|
||||||
- ssh_user
|
|
||||||
- ssh_root_user
|
|
||||||
host:
|
|
||||||
from_secret: ssh-host
|
|
||||||
password:
|
|
||||||
from_secret: ssh-password
|
|
||||||
port:
|
|
||||||
from_secret: ssh-port
|
|
||||||
script:
|
|
||||||
- rm afile
|
|
||||||
- "echo \"export SSH_HOST='$${SSH_HOST}'\" >> afile # \"ssh-host\""
|
|
||||||
- "echo \"export SSH_USER='$${SSH_USER}'\" >> afile # \"ssh-user\""
|
|
||||||
- "echo \"export SSH_ROOT_USER='$${SSH_ROOT_USER}'\" >> afile # \"ssh-root-user\""
|
|
||||||
username:
|
|
||||||
from_secret: ssh-user
|
|
||||||
environment:
|
|
||||||
SSH_HOST:
|
|
||||||
from_secret: ssh-host
|
|
||||||
SSH_ROOT_USER:
|
|
||||||
from_secret: ssh-root-user
|
|
||||||
SSH_USER:
|
|
||||||
from_secret: ssh-user
|
|
||||||
|
|
||||||
- name: deploy squid
|
- name: deploy squid
|
||||||
image: appleboy/drone-ssh
|
image: appleboy/drone-ssh
|
||||||
settings:
|
settings:
|
||||||
|
|
Loading…
Reference in New Issue