ci: Use dedicated slave instead of Docker

Using a dedicated slave node instead of a Docker container has a few
advantages:

* Persistent configuration is possible, without making weird assumptions
  (e.g. Jenkins UID/GID) in the Dockerfile
* Can limit concurrent deployments by controlling executor count on the
  node
This commit is contained in:
2018-04-08 12:21:07 -05:00
parent 7c8227c30f
commit 38884cdb32
4 changed files with 2 additions and 23 deletions

View File

@@ -2,9 +2,7 @@
pipeline {
agent {
dockerfile {
dir 'ci'
}
label 'ansible'
}
triggers {