Skip to content

Commit

Permalink
ci: add google-cloud-sdk to image
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts committed Oct 31, 2023
1 parent de4195d commit 9fec52a
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
vendir
jq
ytt
yq-go
cargo-nextest
cargo-audit
cargo-watch
Expand Down Expand Up @@ -207,17 +206,23 @@

config = {
Cmd = ["bash"];
Env =
[
"GIT_SSL_CAINFO=${cacert}/etc/ssl/certs/ca-bundle.crt"
"SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt"
];
Env = [
"GIT_SSL_CAINFO=${cacert}/etc/ssl/certs/ca-bundle.crt"
"SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt"
];
};

copyToRoot = buildEnv {
name = "image-root";
paths = nativeBuildInputs ++ [ bash ];
pathsToLink = [ "/bin" ];
paths =
nativeBuildInputs
++ [
bash
yq-go
google-cloud-sdk
];

pathsToLink = ["/bin"];
};
};
};
Expand Down

0 comments on commit 9fec52a

Please sign in to comment.