summaryrefslogtreecommitdiff
path: root/.expeditor/verify.pipeline.yml
blob: bbce0ad99eb7a85af1cac22af15a4525525a0109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
steps:

#########################################################################
  # Tests Ruby 2.6
#########################################################################

# - label: "Integration Specs :ruby: 2.6"
#   commands:
#     - /workdir/scripts/bk_tests/bk_install.sh
#     - sed '/ip6/d' /etc/hosts > /etc/hosts.noip6
#     - cp /etc/hosts.noip6 /etc/hosts
#     - cd /workdir; bundle install --without docgen integration omnibus_package --frozen
#     - bundle exec rake spec:integration
#   expeditor:
#     executor:
#       docker:
#         environment:
#           - FORCE_FFI_YAJL=ext
#           - CHEF_LICENSE=accept-no-persist
#           - INTEGRATION_SPECS_26=1
#           - BUNDLE_GEMFILE=/workdir/Gemfile
#
# - label: "Functional Specs :ruby: 2.6"
#   commands:
#     - /workdir/scripts/bk_tests/bk_install.sh
#     - sed '/ip6/d' /etc/hosts > /etc/hosts.noip6
#     - cp /etc/hosts.noip6 /etc/hosts
#     - cd /workdir; bundle install --without docgen integration omnibus_package --frozen
#     - bundle exec rake spec:functional
#   expeditor:
#     executor:
#       docker:
#         environment:
#           - FORCE_FFI_YAJL=ext
#           - CHEF_LICENSE=accept-no-persist
#           - FUNCTIONAL_SPECS_26=1

- label: "Unit Specs :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --without docgen integration omnibus_package --frozen
    - bundle exec rake spec:unit
    - bundle exec rake component_specs
  expeditor:
    executor:
      docker:
        environment:
          - FORCE_FFI_YAJL=ext
          - CHEF_LICENSE=accept-no-persist
          - UNIT_SPECS_26=1

- label: "Chefstyle :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --jobs=3 --retry=3 --deployment --path=vendor/bundle
    - bundle exec rake style
  expeditor:
    executor:
      docker:
        environment:
          - CHEFSTYLE=1

- label: "Test chef-sugar gem :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --jobs=3 --retry=3 --deployment --path=vendor/bundle
    - bundle exec tasks/bin/run_external_test sethvargo/chef-sugar master rake
  expeditor:
    executor:
      docker:
        environment:
          - TEST_GEM=sethvargo/chef-sugar

- label: "Test chef-zero gem :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --jobs=3 --retry=3 --deployment --path=vendor/bundle
    - bundle exec tasks/bin/run_external_test chef/chef-zero master rake pedant
  expeditor:
    executor:
      docker:
        environment:
          - TEST_GEM=chef/chef-zero
          - PEDANT_OPTS=--skip-oc_id
          - CHEF_FS=true

- label: "Test cheffish gem :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --jobs=3 --retry=3 --deployment --path=vendor/bundle
    - bundle exec tasks/bin/run_external_test chef/cheffish master rake spec
  expeditor:
    executor:
      docker:
        environment:
          - TEST_GEM=chef/cheffish

- label: "Test chefspec gem :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --jobs=3 --retry=3 --deployment --path=vendor/bundle
    - bundle exec tasks/bin/run_external_test chefspec/chefspec master rake
  expeditor:
    executor:
      docker:
        environment:
          - TEST_GEM=chefspec/chefspec

- label: "Test knife-windows gem :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --jobs=3 --retry=3 --deployment --path=vendor/bundle
    - bundle exec tasks/bin/run_external_test chef/knife-windows master rake unit_spec
  expeditor:
    executor:
      docker:
        environment:
          - TEST_GEM=chef/knife-windows

#########################################################################
  # Tests Ruby 2.5
#########################################################################

# - label: "Integration Specs :ruby: 2.5"
#   commands:
#     - /workdir/scripts/bk_tests/bk_install.sh
#     - asdf local ruby 2.5.5
#     - sed '/ip6/d' /etc/hosts > /etc/hosts.noip6
#     - cp /etc/hosts.noip6 /etc/hosts
#     - bundle install --without docgen integration omnibus_package --frozen
#     - bundle exec rake spec:integration
#   expeditor:
#     executor:
#       docker:
#         environment:
#           - FORCE_FFI_YAJL=ext
#           - CHEF_LICENSE=accept-no-persist
#           - INTEGRATION_SPECS_25=1
#
# - label: "Functional Specs :ruby: 2.5"
#   commands:
#     - asdf local ruby 2.5.5
#     - /workdir/scripts/bk_tests/bk_install.sh
#     - sed '/ip6/d' /etc/hosts > /etc/hosts.noip6
#     - cp /etc/hosts.noip6 /etc/hosts
#     - bundle install --without docgen integration omnibus_package --frozen
#     - bundle exec rake spec:functional
#   expeditor:
#     executor:
#       docker:
#         environment:
#           - FORCE_FFI_YAJL=ext
#           - CHEF_LICENSE=accept-no-persist
#           - FUNCTIONAL_SPECS_25=1

- label: "Unit Specs :ruby: 2.5"
  commands:
    - asdf local ruby 2.5.5
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle install --without docgen integration omnibus_package --frozen
    - bundle exec rake spec:unit
    - bundle exec rake component_specs
  expeditor:
    executor:
      docker:
        environment:
          - FORCE_FFI_YAJL=ext
          - CHEF_LICENSE=accept-no-persist
          - UNIT_SPECS_25=1

#########################################################################
  # START TEST KITCHEN ONLY
#########################################################################

# - label: "Kitchen Tests :ruby: 2.5"
#   commands:
#     - /workdir/scripts/bk_tests/bk_install.sh
#     - asdf local ruby 2.5.5
#     - sed '/ip6/d' /etc/hosts > /etc/hosts.noip6
#     - cp /etc/hosts.noip6 /etc/hosts
#     - cd /workdir/kitchen-tests
#     - bundle install --jobs=3 --retry=3 --path=vendor/bundle
#     - bundle exec kitchen test end-to-end-amazonlinux-2
#   expeditor:
#     executor:
#       docker:
#         environment:
#           - AMAZON=2
#           - KITCHEN_YAML=/workdir/kitchen-tests/kitchen.bk.yml
#           - BUNDLE_GEMFILE=/workdir/kitchen-tests/Gemfile