From 69a13447a9bc38a0a5e8b2147524cc5b879d3341 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Mon, 11 Jan 2021 18:40:36 +0100 Subject: [PATCH] Fix build test-config build error --- nixos/roles/laminar/test-config.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/roles/laminar/test-config.hs b/nixos/roles/laminar/test-config.hs index f9e2e8b9..f22ac17c 100644 --- a/nixos/roles/laminar/test-config.hs +++ b/nixos/roles/laminar/test-config.hs @@ -41,7 +41,7 @@ main = do branch <- process <$> lookupEnv "BRANCH" jobId <- getEnv "JOB" runId <- getEnv "RUN" - setEnv "LAMINAR_REASON" [i|Building #{derivationName} for branch #{branch} in #{jobId}:#{runId}|] + setEnv "LAMINAR_REASON" [i|Building config branch #{branch} for all systems in #{jobId}:#{runId}|] say [i|Starting builds of branch #{branch} for all systems.|] mapConcurrently_ (\x -> laminarc ["run", x, [i|BRANCH=#{branch}|]]) jobs say [i|Builds succeeded.|]