From 33c6230dac5589dfd2e043463061a13c82c20794 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 18 Aug 2019 21:32:52 +0200 Subject: [PATCH] gitlab-ci: only run a single test Unfortunately the full test suite seems to run out of memory on the GitLab CI runner. (cherry picked from commit 8830b8d0828752c8a8f54f13b917c33e4a5a753b) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4e12f03cd..699ddf4b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ stages: Run tests: stage: test script: - - nix-shell tests -A run.all + - nix-shell tests -A run.files-text only: - release-19.03