diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/atlas.nix | 6 | ||||
-rw-r--r-- | host/software/server/runner.nix | 21 |
2 files changed, 6 insertions, 21 deletions
diff --git a/host/atlas.nix b/host/atlas.nix index 1221a98..e7ce146 100644 --- a/host/atlas.nix +++ b/host/atlas.nix @@ -69,6 +69,12 @@ tagList = [ "nix" "has-gpu" ]; limit = 1; }; + openlb-ci-extra = { + executor = "shell"; + registrationConfigFile = "/etc/gitlab-runner.conf"; + tagList = [ "nix" "gcc" "clang" "mpi" "cuda" "has-flake" ]; + limit = 4; + }; }; }; diff --git a/host/software/server/runner.nix b/host/software/server/runner.nix deleted file mode 100644 index a9d5598..0000000 --- a/host/software/server/runner.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ config, pkgs, ... }: - -{ - services.gitlab-runner = { - enable = true; - services = { - olbtest = { - executor = "shell"; - registrationConfigFile = "/etc/gitlab-runner.conf"; - tagList = [ "nixos" ]; - }; - }; - }; - - users.users.gitlab-runner = { - isNormalUser = true; - shell = pkgs.fish; - }; - - nix.allowedUsers = [ "gitlab-runner" ]; -} |