diff options
author | makefu <github@syntax-fehler.de> | 2018-10-21 00:18:59 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-10-21 00:18:59 +0200 |
commit | cea8403dc5eb48792c9ccd4c4fc9584a84ba4238 (patch) | |
tree | b8f75b79c4a2a389949cb404bbd5044cb2ef2474 /makefu/2configs/shack | |
parent | 72a009b6a5593ca6885ca83517dfd99cefe2d3cb (diff) |
ma shack/gitlab-ci: maintain own config
Diffstat (limited to 'makefu/2configs/shack')
-rw-r--r-- | makefu/2configs/shack/gitlab-runner/default.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/makefu/2configs/shack/gitlab-runner/default.nix b/makefu/2configs/shack/gitlab-runner/default.nix new file mode 100644 index 000000000..55dc50fa8 --- /dev/null +++ b/makefu/2configs/shack/gitlab-runner/default.nix @@ -0,0 +1,31 @@ + +{ + systemd.services.gitlab-runner.path = [ + "/run/wrappers" # /run/wrappers/bin/su + "/" # /bin/sh + ]; + services.gitlab-runner = { + enable = true; + configOptions = + { concurrent = 1; + runners = [ + { builds_dir = ""; + #docker = + #{ cache_dir = ""; + # disable_cache = true; + # host = ""; image = "nixos/nix:2.1.3"; + # privileged = true; + #}; + #executor = "docker"; + # name = "docker-nix"; + name = "gum-shell"; + executor = "shell"; + environment = [ "PATH=/bin:/run/wrappers/bin:/etc/per-user/gitlab-runner/bin:/etc/per-user-pkgs/gitlab-runner/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin" ]; + # generate via `gitlab-runner register` + token = import <secrets/shackspace-gitlab-ci-token.nix>; + url = "https://git.shackspace.de/"; + } + ]; + }; + }; +} |