From 05131b8d5c7813a22b8bf55d8f91d9606cccf177 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 18 Oct 2019 19:30:32 -0400 Subject: [PATCH] Give it longer to complete --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e425d25b..22fd5b68 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,11 +58,15 @@ jobs: - privatestorageio-nix-store-v2- - run: - name: "Run Tests" + name: "Build System Test Driver" command: | export NIX_PATH=nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/$(cat nixpkgs.rev).tar.gz nix-build --max-jobs 1 nixos/system-tests.nix -A driver + # Give it a good long while. PaymentServer and its dependencies, in + # particular, can take a while to build. + no_output_timeout: "20m" + - save_cache: name: "Cache Nix Store Paths" key: privatestorageio-nix-store-v2-{{ checksum "nixpkgs.rev" }} -- GitLab