Skip to content

Commit bb3940d

Browse files
committed
WIP: Refactor cookbook
1 parent abcb7d7 commit bb3940d

File tree

11 files changed

+654
-178
lines changed

11 files changed

+654
-178
lines changed

.github/workflows/test.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
kitchen:
14+
runs-on: ubuntu-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
platform: [ "default-debian-11", "default-debian-12", "default-ubuntu-2204" ]
19+
recipe: [ "binary", "source" ]
20+
variant: [ "core" ]
21+
steps:
22+
- uses: actions/checkout@v4
23+
- name: Set up Ruby
24+
uses: ruby/setup-ruby@v1
25+
with:
26+
ruby-version: 3.1
27+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
28+
- name: Run Test Kitchen platform ${{ matrix.platform }}
29+
run: env KITCHEN_RECIPE=${{ matrix.recipe }} KITCHEN_VARIANT=${{ matrix.variant }} bundle exec rake kitchen:${{ matrix.platform }}
30+
style:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- name: Set up Ruby
35+
uses: ruby/setup-ruby@v1
36+
with:
37+
ruby-version: 3.1
38+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
39+
- name: Run style checks
40+
run: bundle exec rake style:ruby

.kitchen.yml

+27-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,39 @@
11
---
22
driver:
3-
name: docker
3+
name: dokken
4+
privileged: true # allows systemd services to start
5+
chef_image: cincproject/cinc
6+
chef_version: <%= ENV.fetch('CHEF_VERSION', 18) %>
47

58
provisioner:
6-
name: chef_zero
7-
product_name: chef
8-
product_version: <%= ENV["CHEF_VERSION"] || '14' %>
9+
name: dokken
10+
product_name: cinc
11+
chef_binary: /opt/cinc/bin/cinc-client
12+
deprecations_as_errors: true
13+
multiple_converge: 2
14+
15+
transport:
16+
name: dokken
17+
18+
verifier:
19+
name: inspec
920

1021
platforms:
11-
- name: <%= ENV["KITCHEN_PLATFORM"] %>
12-
driver_config:
13-
use_sudo: false
22+
# @see https://github.com/chef-cookbooks/testing_examples/blob/main/kitchen.dokken.yml
23+
# @see https://hub.docker.com/u/dokken
24+
- name: debian-12
25+
driver:
26+
image: dokken/debian-12
27+
pid_one_command: /bin/systemd
28+
intermediate_instructions:
29+
- RUN /usr/bin/apt-get update
30+
- RUN /usr/bin/apt-get upgrade -y
31+
- RUN /usr/bin/apt-get purge exim4* -y
1432

1533
suites:
1634
- name: default
1735
run_list:
18-
- recipe[bitcoin::<%= ENV["KITCHEN_RECIPE"] %>]
36+
- recipe[bitcoin::<%= ENV.fetch('KITCHEN_RECIPE', 'binary') %>]
1937
attributes:
2038
bitcoin:
21-
variant: <%= ENV["KITCHEN_VARIANT"] %>
39+
variant: <%= ENV.fetch('KITCHEN_VARIANT', 'core') %>

.travis.yml

-34
This file was deleted.

Gemfile

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
source 'https://rubygems.org'
22

3-
group :development do
4-
gem 'berkshelf'
5-
gem 'chef', '~> 14'
6-
gem 'rake'
7-
end
8-
9-
group :style do
10-
gem 'cookstyle'
11-
gem 'foodcritic'
12-
end
3+
gem 'rake'
134

145
group :test do
15-
gem 'kitchen-docker'
6+
gem 'berkshelf' # needed by test-kitchen
7+
gem 'cookstyle'
8+
gem 'kitchen-dokken'
9+
gem 'kitchen-inspec'
1610
gem 'test-kitchen'
1711
end

0 commit comments

Comments
 (0)