2021-12-09 15:34:37 +00:00
|
|
|
// See: https://github.com/kradalby/drone-jsonnet/blob/master/drone.libsonnet
|
|
|
|
|
|
|
|
local droneStatus = ['success', 'failure'];
|
|
|
|
|
|
|
|
local pipeline = {
|
|
|
|
new():: self.withKind("pipeline"),
|
|
|
|
withName(name):: self + { name: name },
|
|
|
|
withKind(kind):: self + { kind: kind },
|
|
|
|
withType(type):: self + { type: type },
|
|
|
|
withNode(node):: self + { node: node },
|
|
|
|
withTrigger(trigger):: self + { trigger: trigger },
|
|
|
|
withDependsOn(n):: self + { depends_on: n },
|
|
|
|
withNodeSelector(ns):: self + { node_selector: ns },
|
|
|
|
withSteps(steps):: self + if std.type(steps) == 'array' then { steps: steps } else { steps: [steps] },
|
|
|
|
step:: {
|
|
|
|
new(name='', image=''):: self.withName(name).withImage(image).withPullIfNotExists(),
|
|
|
|
withName(name):: self + { name: name },
|
|
|
|
withImage(image):: self + if image != '' then { image: image } else {},
|
|
|
|
withAlwaysPull():: self + { pull: 'always' },
|
|
|
|
withPullIfNotExists():: self + { pull: 'if-not-exists' },
|
|
|
|
withCommands(commands):: self + if std.type(commands) == 'array' then { commands: commands } else { commands: [commands] },
|
|
|
|
withTrigger(trigger):: self + { trigger: trigger }, // TODO: this is duplicated in pipeline object
|
2021-12-09 23:12:57 +00:00
|
|
|
withEnv(envs):: self + { environment+: envs },
|
|
|
|
withRuntimeEnvVar(envs):: (local existingCmds = if std.objectHas(self, "commands") then self.commands else [];
|
|
|
|
self + {
|
|
|
|
commands: std.map(function (i) std.format('export %s="%s"', [i, envs[i]]),
|
|
|
|
std.objectFields(envs)) + existingCmds
|
|
|
|
}),
|
2021-12-09 15:34:37 +00:00
|
|
|
withWhen(when):: self + { when: when },
|
|
|
|
withSettings(settings):: self + { settings: settings },
|
|
|
|
},
|
|
|
|
when:: {
|
|
|
|
new():: self + {},
|
|
|
|
withBranch(branch):: self + if std.type(branch) == 'array' then { branch: branch } else { branch: [branch] },
|
|
|
|
withEvent(e):: self + if std.type(e) == 'array' then { event: e } else { event: [e] },
|
|
|
|
withStatus(s):: self + if std.type(s) == 'array' then { status: s } else { status: [s] },
|
|
|
|
withStatusAll():: self.withStatus(droneStatus),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
local trigger = {
|
|
|
|
new():: self + {},
|
|
|
|
withBranch(branch):: self + if std.type(branch) == 'array' then { branch: branch } else { branch: [branch] },
|
|
|
|
withEvent(e):: self + if std.type(e) == 'array' then { event: e } else { event: [e] },
|
|
|
|
withStatus(s):: self + if std.type(s) == 'array' then { status: s } else { status: [s] },
|
|
|
|
withStatusAll():: self.withStatus(droneStatus),
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
local env_from_secret(dict) = {
|
|
|
|
[key]: {
|
|
|
|
from_secret: dict[key],
|
|
|
|
}
|
|
|
|
for key in std.objectFields(dict)
|
|
|
|
};
|
|
|
|
|
|
|
|
local guix_pipeline(name) = pipeline.new()
|
|
|
|
.withName(name)
|
|
|
|
.withType("docker")
|
|
|
|
.withNode({ "guix": "on"});
|
|
|
|
|
|
|
|
local guix_step(name,
|
|
|
|
commands,
|
|
|
|
image="docker.nexus.home.rekahsoft.ca/guix:latest") =
|
|
|
|
pipeline.step.new(name, image).withPullIfNotExists().withCommands(commands);
|
|
|
|
|
|
|
|
local guix_step_time_machine(name,
|
|
|
|
commands,
|
|
|
|
cwd=".",
|
|
|
|
channels="channels.scm",
|
|
|
|
image="docker.nexus.home.rekahsoft.ca/guix:latest") =
|
|
|
|
pipeline.step.new(name, image).withPullIfNotExists().withCommands(
|
2021-12-09 16:59:51 +00:00
|
|
|
// Conditionally change directory
|
2021-12-09 15:34:37 +00:00
|
|
|
(if cwd == "."
|
|
|
|
then [] else [std.format("cd %s", cwd)]) +
|
2021-12-09 16:59:51 +00:00
|
|
|
// Drone-ci does not populate a /etc/passwd which causes issues with guix
|
|
|
|
["echo 'root:x:0:0:root:/root:/bin/bash' >> /etc/passwd"] +
|
|
|
|
// Expand provide guix commands into executable shell
|
2021-12-09 15:34:37 +00:00
|
|
|
std.map(function(i) std.format("guix time-machine -C %s -- %s", [channels, i]),
|
|
|
|
if std.type(commands) == 'array' then commands else [commands]));
|
|
|
|
|
|
|
|
local dronePromoteCmd(env) = [
|
|
|
|
"export DRONE_SERVER=\"${DRONE_SYSTEM_PROTO}://${DRONE_SYSTEM_HOST}\"",
|
2021-12-10 00:37:02 +00:00
|
|
|
"export DRONE_TOKEN",
|
2021-12-09 15:34:37 +00:00
|
|
|
std.format('DRONE_PROMOTED_PIPELINE_ID=$(drone build promote --format \'{{ .Number }}\' "$DRONE_REPO" "$DRONE_BUILD_NUMBER" "%s")', env),
|
2021-12-10 00:44:26 +00:00
|
|
|
'while status="$(drone build info --format \'{{ .Status }}\' $DRONE_REPO $DRONE_PROMOTED_PIPELINE_ID)"; do
|
2021-12-09 15:34:37 +00:00
|
|
|
case "$status" in
|
2021-12-10 01:11:33 +00:00
|
|
|
pending|running)
|
2021-12-09 15:34:37 +00:00
|
|
|
sleep 30s
|
|
|
|
;;
|
|
|
|
success)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
failure|error|killed)
|
|
|
|
echo "Promoted job with id $DRONE_PROMOTED_PIPELINE_ID failed with status \'$status\'."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unknown pipeline status \'$status\'."
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
done',
|
|
|
|
];
|
|
|
|
|
|
|
|
local promoteStep(env,
|
|
|
|
secret_name_drone_token="drone_token",
|
|
|
|
image="docker.nexus.home.rekahsoft.ca/drone/cli:1.4-alpine") = pipeline.step.new(std.format("promote-%s", env), image)
|
|
|
|
.withWhen(pipeline.when.new()
|
|
|
|
.withBranch("master")
|
|
|
|
.withEvent("push"))
|
|
|
|
.withCommands(dronePromoteCmd(env))
|
|
|
|
.withEnv(env_from_secret({
|
|
|
|
DRONE_TOKEN: "drone_token"
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
local deployStep(name, target=name, args=[]) = guix_step_time_machine(
|
|
|
|
name,
|
2021-12-09 17:16:24 +00:00
|
|
|
std.format('shell -m manifest.scm -- make %s ENV="${DRONE_DEPLOY_TO}" %s', [target, std.join(" ", args)]),
|
2021-12-09 15:34:37 +00:00
|
|
|
cwd="infra",
|
|
|
|
channels="../channels.scm")
|
|
|
|
.withEnv({ PLAN: "out.plan" } + env_from_secret({
|
|
|
|
AWS_ACCESS_KEY_ID: "aws_access_key_id",
|
|
|
|
AWS_SECRET_ACCESS_KEY: "aws_secret_access_key",
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
[
|
|
|
|
guix_pipeline("validate").withTrigger(trigger.new().withEvent(["push", "pull_request", "tag"])).withSteps([
|
|
|
|
guix_step_time_machine("build", "build -f guix.scm"),
|
|
|
|
promoteStep("staging"),
|
|
|
|
promoteStep("production"),
|
|
|
|
]),
|
|
|
|
|
|
|
|
guix_pipeline("deploy").withTrigger(trigger.new().withEvent("promote")).withSteps([
|
|
|
|
deployStep("init", "setup"),
|
2021-12-09 23:12:57 +00:00
|
|
|
deployStep("plan").withRuntimeEnvVar({
|
|
|
|
TF_VAR_site_static_files_dir: "$(guix time-machine -C channels.scm -- build -f guix.scm | grep -e '^.*-site$')"
|
|
|
|
}),
|
2021-12-09 15:34:37 +00:00
|
|
|
deployStep("deploy"),
|
|
|
|
])
|
|
|
|
]
|