Commit 1dab81ced0888087619073368ed71be97d075788
1 parent
e0f0255d
Exists in
master
and in
89 other branches
ci: install stuff needed for tests
Showing
4 changed files
with
19 additions
and
1 deletions
Show diff stats
Rakefile.ci
cookbooks/ci/recipes/default.rb
| ... | ... | @@ -0,0 +1,15 @@ |
| 1 | +cookbook_file '/etc/apt/sources.list.d/contrib.list' do | |
| 2 | + notifies :run, 'execute[apt-update]', :immediately | |
| 3 | +end | |
| 4 | + | |
| 5 | +execute 'apt-update' do | |
| 6 | + command 'apt-get update' | |
| 7 | + action :nothing | |
| 8 | +end | |
| 9 | +package 'virtualbox' | |
| 10 | + | |
| 11 | +package 'vagrant' | |
| 12 | +package 'rake' | |
| 13 | + | |
| 14 | +# FIXME not in the archive yet | |
| 15 | +# package 'chake' | ... | ... |