Skip to content

Commit

Permalink
hosts/jenkins-controller: add rclone to PATH
Browse files Browse the repository at this point in the history
We'll shell out to our patched rclone from the pipeline definition.

Signed-off-by: Florian Klink <[email protected]>
  • Loading branch information
flokli committed May 31, 2024
1 parent 45f1465 commit 303dfaa
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions hosts/azure/jenkins-controller/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,19 @@ in {
listenAddress = "localhost";
port = 8081;
withCLI = true;
packages = with pkgs; [
bashInteractive # 'sh' step in jenkins pipeline requires this
coreutils
nix
git
zstd
jq
csvkit
];
packages = with pkgs;
[
bashInteractive # 'sh' step in jenkins pipeline requires this
coreutils
nix
git
zstd
jq
csvkit
]
++ [
rclone # used to copy artifacts
];
extraJavaOptions = [
# Useful when the 'sh' step fails:
"-Dorg.jenkinsci.plugins.durabletask.BourneShellScript.LAUNCH_DIAGNOSTICS=true"
Expand Down

0 comments on commit 303dfaa

Please sign in to comment.