From ac7f9f54269e2cbf575b697707cd35d9627473c7 Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@privatestorage.io> Date: Fri, 12 Mar 2021 21:45:35 +0000 Subject: [PATCH] GitLab config: Quote all the {str|th}ings! --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8f0b2f06..5cc2737b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,16 +1,16 @@ docs: - stage: build + stage: "build" script: - - nix-shell --run 'nix-build docs.nix' + - "nix-shell --run 'nix-build docs.nix'" unit-tests: - stage: test + stage: "test" script: - - nix-shell --run 'nix-build nixos/unit-tests.nix' && cat result + - "nix-shell --run 'nix-build nixos/unit-tests.nix' && cat result" system-tests: - stage: test - timeout: 3 hours + stage: "test" + timeout: "3 hours" script: - - nix-shell --run 'nix-build nixos/system-tests.nix' + - "nix-shell --run 'nix-build nixos/system-tests.nix'" -- GitLab