summaryrefslogtreecommitdiff
path: root/.expeditor/verify.pipeline.yml
blob: 2987928f01832173fbb7962256492689f2af8a26 (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
steps:

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

- label: "Integration Specs :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - bundle exec rake spec:integration
  expeditor:
    executor:
      docker:
        environment:
          - FORCE_FFI_YAJL=ext
          - CHEF_LICENSE=accept-no-persist
          - INTEGRATION_SPECS_26=1

- label: "Functional Specs :ruby: 2.6"
  commands:
    - /workdir/scripts/bk_tests/bk_install.sh
    - 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 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