From 168ed8027b7c522186b091d0d6361392838f00fa Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 13 Jul 2022 08:34:38 -0400
Subject: [PATCH] accelerate the test cycle by not doing the builds

---
 ci-tools/update-nixpkgs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ci-tools/update-nixpkgs b/ci-tools/update-nixpkgs
index 4c7d1650..911848ec 100755
--- a/ci-tools/update-nixpkgs
+++ b/ci-tools/update-nixpkgs
@@ -6,7 +6,7 @@ set -eux -o pipefail
 TARGET_BRANCH="nixpkgs-upgrade-$(date +%Y-%m-%d)"
 
 echo '{}' > morph/grid/local/public-keys/users.nix
-nix-build -A morph -o result-before
+# nix-build -A morph -o result-before
 
 git checkout "${TARGET_BRANCH}" || git checkout -b "${TARGET_BRANCH}"
 
@@ -14,7 +14,7 @@ git checkout "${TARGET_BRANCH}" || git checkout -b "${TARGET_BRANCH}"
 # sort out this mess sooner rather than later...
 nix-shell ./shell.nix --run update-nixpkgs
 
-nix-build -A morph -o result-after
+# nix-build -A morph -o result-after
 diff=$(nix --extra-experimental-features nix-command store diff-closures ./result-before/ ./result-after/)
 
 git commit -am "bump nixpkgs version"
-- 
GitLab