Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ struct GenerateBuildkiteJobScript: ParsableCommand {
scriptBuilder.addDependency(atPath: "~/.circ")
scriptBuilder.addEnvironmentVariable(named: "BUILDKITE", value: "true")
scriptBuilder.copyEnvironmentVariables(prefixedBy: "BUILDKITE_")
// We only have one environment variable called IMAGE_ID, but there is
// no method to copy individual env vars.
scriptBuilder.copyEnvironmentVariables(prefixedBy: "IMAGE_ID")
scriptBuilder.addCommand("buildkite-agent bootstrap")

// Manually specify the build path to keep them nice and clean in the output
Expand Down