Skip to content
Snippets Groups Projects
Verified Commit db50aa5e authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: wip web tests

parent b6f236e8
No related branches found
No related tags found
No related merge requests found
...@@ -106,18 +106,20 @@ ...@@ -106,18 +106,20 @@
gitlab = let gitlab = let
ciJobToken = builtins.getEnv "CI_JOB_TOKEN"; ciJobToken = builtins.getEnv "CI_JOB_TOKEN";
script-run-ci-tests = pkgs'.callPackage ./nix/scripts/run-ci-tests.nix {}; script-run-ci-tests = pkgs'.callPackage ./nix/scripts/run-ci-tests.nix {};
script-run-web-tests = pkgs'.callPackage ./nix/scripts/run-web-tests.nix {};
gitlabPackages = with pkgs';[ gitlabPackages = with pkgs';[
nodejs_21 nodejs_21
git git
script-run-ci-tests script-run-ci-tests
script-run-web-tests
]; ];
in in
pkgs'.mkShell { pkgs'.mkShell {
nativeBuildInputs = gitlabPackages; nativeBuildInputs = gitlabPackages;
shellHook = '' shellHook = ''
if [ -z "''${CI_JO B_TOKEN}" ]; then if [ -z "''${CI_JOB_TOKEN}" ]; then
exit 1 exit 1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment