Commit 7df63458343005f9a200f1fbf3b5148e98e7f441

Authored by Antonio Terceiro
1 parent bfef631c

Add CI server environment

Rakefile.ci 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +ENV['CHAKE_NODES'] = 'nodes-ci.yaml'
  2 +ENV['CHAKE_RSYNC_OPTIONS'] = '--exclude .vagrant/ --exclude docs/_build'
  3 +require 'chake'
... ...
ci 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/sh
  2 +
  3 +rake -f Rakefile.ci "$@"
... ...
cookbooks/ci/recipes/default.rb 0 → 100644
... ... @@ -0,0 +1 @@
  1 +# nothing yet
... ...
nodes-ci.yaml 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +ci.spb.lappis:
  2 + run_list:
  3 + - role[ci_server]
... ...
roles/ci_server.rb 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +name 'ci_server'
  2 +description 'Continuous integration server'
  3 +run_list 'recipe[ci]'
  4 +
... ...