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

- label: lint-chefstyle
  command:
    - bundle install --jobs=7 --retry=3 --without docs debug
    - bundle exec rake style
  expeditor:
    executor:
      docker:
        image: ruby:2.6-stretch

- label: run-ohai
  command:
    - bundle install --jobs=7 --retry=3 --without docs debug
    - bundle exec ohai
  expeditor:
    executor:
      docker:
        image: ruby:2.6-stretch

- label: run-specs-ruby-2.5
  command:
    - bundle install --jobs=7 --retry=3 --without docs debug
    - bundle exec rake spec
  expeditor:
    executor:
      docker:
        environment:
          - "LANG=en_US.UTF-8"
          - "LANGUAGE=en_US.UTF-8"
          - "LC_ALL=en_US.UTF-8"
        image: ruby:2.5-stretch

- label: run-specs-ruby-2.6
  command:
    - bundle install --jobs=7 --retry=3 --without docs debug
    - bundle exec rake spec
  expeditor:
    executor:
      docker:
        environment:
          - "LANG=en_US.UTF-8"
          - "LANGUAGE=en_US.UTF-8"
          - "LC_ALL=en_US.UTF-8"
        image: ruby:2.6-stretch

- label: run-specs-windows
  command:
    - bundle install --jobs=7 --retry=3 --without docs debug
    - bundle exec rake spec
  expeditor:
    executor:
      docker:
        host_os: windows