summary refs log tree commit diff
path: root/nixos/modules/services/continuous-integration
Commit message (Collapse)AuthorAge
* nixos: Replace pkgs.openssh with config.programs.ssh.packageWilliam A. Kennington III2015-06-26
|
* types.uniq types.int -> types.intEelco Dolstra2015-06-15
| | | | types.int already implies uniqueness.
* nixos/jekins: add services.jenkins.extraGroups optionBjørn Forsman2014-09-12
| | | | | This makes it easy to give jenkins extra privileges by adding group memberships. Use with care :-)
* nixos/jekins: rename option services.jenkins.{extraOpts => extraOptions}Bjørn Forsman2014-09-09
| | | | | I noticed "extraOptions" is infinitely more used than "extraOpts" in NixOS.
* nixos/jenkins: remove use of types.string (it's deprecated)Bjørn Forsman2014-09-09
|
* nixos/jenkins: add services.jenkins.extraOpts optionBjørn Forsman2014-09-09
| | | | Allows passing extra command line arguments to Jenkins.
* Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra2014-04-14
| | | | | | | | Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
* Fix tests broken due to the firewall being enabled by defaultEelco Dolstra2014-04-11
|
* nixos/jenkins-service: fix 'group' option documentationBjørn Forsman2014-04-09
| | | | Both for master and slave.
* remove users.jenkins config start on slave config.Corey O'Connor2014-03-13
| | | | | | Uses standard NixOS user config merging. Work in progress: The slave config does not actually start the slave agent. This just configures a jenkins user if required. Bare minimum to enable a nice jenkins SSH slave.
* match systemd style and silent curl progress bar during startup checkCorey O'Connor2014-03-13
|
* Add jenkins continuous integration server and user.Corey O'Connor2014-03-13
By default the jenkins server is executed under the user "jenkins". Which can be configured using users.jenkins.* options. If a different user is requested by changing services.jenkins.user then none of the users.jenkins options apply. This patch does not include jenkins slave configuration. Some config options will probably change when this is implemented. Aspects like the user and environment are typically identical between slave and master. The service configs are different. The design is for users.jenkins to cover the shared aspects while services.jenkins and services.jenkins-slave cover the master and slave specific aspects, respectively. Another option would be to place everything under services.jenkins and have a config that selects master vs slave.