diff options
author | Florian Klink <flokli@flokli.de> | 2024-06-29T14·50+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-06-29T16·56+0000 |
commit | 0fd4a1a65512753fd37dbf0cb0832b6711465c27 (patch) | |
tree | 27f0cc7d17f6198515def4254ecb98c93f1c54b2 /tvix/boot/tests/default.nix | |
parent | 7294a2f9aacb235ed5209761013eba2daf68ab10 (diff) |
fix(tvix/boot/tests): set SSL_CERT_FILE r/8323
This is necessary for http clients to successfully construct. Change-Id: If0d968e964f5c58d9956b92ee0ab3d97c39391d6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11892 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/boot/tests/default.nix')
-rw-r--r-- | tvix/boot/tests/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/boot/tests/default.nix b/tvix/boot/tests/default.nix index 34e2e0dd9130..87530da0da8b 100644 --- a/tvix/boot/tests/default.nix +++ b/tvix/boot/tests/default.nix @@ -48,6 +48,8 @@ let ]; buildCommand = '' touch $out + # Ensure we can construct http clients. + export SSL_CERT_FILE="${pkgs.cacert.out}/etc/ssl/certs/ca-bundle.crt" # Start the tvix daemon, listening on a unix socket. BLOB_SERVICE_ADDR=${blobServiceAddr} \ |