forked from test-kitchen/test-kitchen
-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (82 loc) · 2.25 KB
/
integration.yml
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
---
name: integration
"on":
pull_request:
push:
branches:
- main
concurrency:
group: integration-${{ github.ref }}
cancel-in-progress: true
jobs:
integration-linux:
name: Linux Dokken Integration Tests
env:
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["3.1"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec kitchen test
# FIXME: Commented out until we fix the pipelines for the RC2 release
# integration-macos:
# name: MacOS Integration Tests
# runs-on: macos-13
# strategy:
# fail-fast: false
# matrix:
# ruby: ["3.3"]
# steps:
# - name: Install Vagrant VirtualBox
# run: brew install --cask virtualbox vagrant
# - uses: actions/checkout@v4
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ matrix.ruby }}
# bundler-cache: true
# - name: Kitchen Test
# run: |
# export LOGNAME=$USER
# bundle exec kitchen test almalinux-9
#
# integration-windows:
# name: Windows Integration Tests
# env:
# BUNDLE_without: integration
# machine_user: test_user
# machine_pass: Pass@word1
# machine_port: 5985
# SPEC_OPTS: --format progress
# KITCHEN_LOCAL_YAML: kitchen.windows.yml
# runs-on: windows-latest
# timeout-minutes: 600
# strategy:
# fail-fast: false
# matrix:
# ruby: ["3.3"]
# steps:
# - uses: actions/checkout@v4
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ matrix.ruby }}
# bundler-cache: true
# - name: Unit Tests
# run: bundle exec rake unit
# - name: Quality Tests
# run: bundle exec rake quality
# - name: Setup Machine
# run: |
# winrm.cmd quickconfig -q
# net user /add ${{ env.machine_user }} ${{ env.machine_pass }}
# net localgroup administrators ${{ env.machine_user }} /add
# bundle config set --local with 'integration'
# bundle install
# - name: Verify Windows
# run: bundle exec kitchen verify windows