diff options
author | lassulus <lassulus@lassul.us> | 2017-08-16 12:33:54 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-08-16 12:33:54 +0200 |
commit | 3b24a8306d0bb57924fcc64ec28c5b1aa3a4ac74 (patch) | |
tree | cbb9a36c1aa94eec48b6ce13c14e5c994df0f546 /makefu/2configs/git/gitlab-runner-shackspace.nix | |
parent | f8c0bcf1e9e4d4dd660e6fe82017e28dbbfd6024 (diff) | |
parent | a795766f3a881d43f92dcafcf26eeb765e993ed7 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/git/gitlab-runner-shackspace.nix')
-rw-r--r-- | makefu/2configs/git/gitlab-runner-shackspace.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/makefu/2configs/git/gitlab-runner-shackspace.nix b/makefu/2configs/git/gitlab-runner-shackspace.nix new file mode 100644 index 000000000..a5a1247ba --- /dev/null +++ b/makefu/2configs/git/gitlab-runner-shackspace.nix @@ -0,0 +1,32 @@ +{ config, ... }: +let + url = "https://git.shackspace.de/"; + # generate token from CI-token via: + ## gitlab-runner register + token = import <secrets/shackspace-gitlab-ci-token.nix> ; +in { + virtualisation.docker.enable = true; + services.gitlab-runner = { + enable = true; + gracefulTimeout = "120min"; + # configFile = "/var/src/secrets/runner.toml"; + configOptions = { + concurrent = 2; + runners = [{ + name = "nix-krebs-1.11"; + inherit token url; + executor = "docker"; + builds_dir = ""; + docker = { + host = ""; + image = "nixos/nix:1.11"; + privileged = false; + disable_cache = false; + volumes = ["/cache"]; + shm_size = 0; + }; + cache = {}; + }]; + }; + }; +} |