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

fix: wip new pipeline

parent ff1da792
No related branches found
No related tags found
No related merge requests found
...@@ -52,21 +52,17 @@ ...@@ -52,21 +52,17 @@
commonPackages commonPackages
++ scriptPackages ++ scriptPackages
++ [ ++ [
script-deploy script-deploy
script-clean-up script-clean-up
script-run-ci-tests script-run-ci-tests
]; ];
shellPackages = let shellPackages = let
lib = pkgs'.lib; lib = pkgs'.lib;
in in
commonPackages commonPackages
++ extendedPackages ++ extendedPackages
++ scriptPackages; ++ scriptPackages;
in { in {
packages = rec { packages = rec {
monster = pkgs'.callPackage ./nix/packages/monster.nix {inherit commonScript;}; monster = pkgs'.callPackage ./nix/packages/monster.nix {inherit commonScript;};
...@@ -75,7 +71,6 @@ ...@@ -75,7 +71,6 @@
}; };
devShells = { devShells = {
default = let default = let
ciJobToken = builtins.getEnv "CI_JOB_TOKEN"; ciJobToken = builtins.getEnv "CI_JOB_TOKEN";
in in
...@@ -120,7 +115,6 @@ ...@@ -120,7 +115,6 @@
pkgs'.mkShell { pkgs'.mkShell {
#nativeBuildInputs = gitlabPackages; #nativeBuildInputs = gitlabPackages;
shellHook = '' shellHook = ''
...@@ -129,16 +123,16 @@ ...@@ -129,16 +123,16 @@
${pkgs'.coreutils}/bin/printenv ${pkgs'.coreutils}/bin/printenv
if [ -z "$GITLAB_TOKEN" ]; then if [ -z "''${GITLAB_TOKEN}" ]; then
exit 1 # exit 1
fi fi
if [ -z "''${CI_REPOSITORY_URL}" ]; then if [ -z "''${CI_REPOSITORY_URL}" ]; then
exit 1 # exit 1
fi fi
if [ -z "''${CI_PROJECT_DIR}" ]; then if [ -z "''${CI_PROJECT_DIR}" ]; then
exit 1 # exit 1
fi fi
cd ''${CI_PROJECT_DIR} || exit 1 cd ''${CI_PROJECT_DIR} || exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment