summaryrefslogtreecommitdiff
path: root/.expeditor/verify.pipeline.yml
blob: 645ca0abda26bd19b15b1bfdea5f2ee7d8ec077e (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
---
expeditor:
  defaults:
    buildkite:
      timeout_in_minutes: 30

steps:

- label: run-lint-and-specs-ruby-2.6
  command:
    - .expeditor/run_linux_tests.sh rake spec pedant style
  expeditor:
    executor:
      docker:
        image: ruby:2.6

- label: run-lint-and-specs-ruby-2.7
  command:
    - .expeditor/run_linux_tests.sh rake spec pedant style
  expeditor:
    executor:
      docker:
        image: ruby:2.7

- label: run-lint-and-specs-ruby-3.0
  command:
    - .expeditor/run_linux_tests.sh rake spec pedant style
  expeditor:
    executor:
      docker:
        image: ruby:3.0

- label: run-lint-and-specs-ruby-3.1
  command:
    - .expeditor/run_linux_tests.sh rake spec pedant style
  expeditor:
    executor:
      docker:
        image: ruby:3.1

- label: run-specs-windows-ruby-3.0
  command:
    - .expeditor/run_windows_tests.ps1
  expeditor:
    executor:
      docker:
        host_os: windows
        shell: ["powershell", "-Command"]
        image: rubydistros/windows-2019:3.0
        environment:
          - FORCE_FFI_YAJL=ext
          - EXPIRE_CACHE=true
          - CHEF_LICENSE=accept-no-persist

- label: run-specs-windows-ruby-3.1
  command:
    - .expeditor/run_windows_tests.ps1
  expeditor:
    executor:
      docker:
        host_os: windows
        shell: ["powershell", "-Command"]
        image: rubydistros/windows-2019:3.1
        environment:
          - FORCE_FFI_YAJL=ext
          - EXPIRE_CACHE=true
          - CHEF_LICENSE=accept-no-persist