chore: Fix tests, remove EOL OSes, fix Ruby 3.4 compatibility warnings #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: 'Lint, Unit & Integration Tests' | |
"on": | |
pull_request: | |
jobs: | |
lint-unit: | |
uses: test-kitchen/.github/.github/workflows/lint-unit.yml@main | |
build-matrix: | |
name: Build test matrix from test-kitchen config | |
runs-on: ubuntu-latest | |
needs: lint-unit | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- name: Discover Windows suites | |
id: windows | |
run: | | |
cat << "EORUBY" | bundle exec ruby >> "$GITHUB_OUTPUT" | |
require 'inspec' | |
require 'kitchen' | |
windows_loader = Kitchen::Loader::YAML.new(project_config: './kitchen.windows.yml') | |
windows_suites = Kitchen::Config.new(loader: windows_loader).instances.map { |instance| instance.name } | |
puts "suites=#{windows_suites.to_json}" | |
EORUBY | |
- name: Discover Linux suites | |
id: linux | |
run: | | |
cat << "EORUBY" | bundle exec ruby >> "$GITHUB_OUTPUT" | |
require 'inspec' | |
require 'kitchen' | |
linux_loader = Kitchen::Loader::YAML.new(project_config: './kitchen.yml') | |
linux_suites = Kitchen::Config.new(loader: linux_loader).instances.map { |instance| instance.name } | |
puts "suites=#{linux_suites.to_json}" | |
EORUBY | |
outputs: | |
windows-suites: ${{ steps.windows.outputs.suites }} | |
linux-suites: ${{ steps.linux.outputs.suites }} | |
integration-windows: | |
name: Windows ${{matrix.suite}} | |
runs-on: windows-latest | |
needs: | |
- build-matrix | |
strategy: | |
fail-fast: false | |
matrix: | |
suite: ${{ fromJson(needs.build-matrix.outputs.windows-suites) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- run: bundle exec kitchen test ${{ matrix.suite }} -l debug | |
integration-linux: | |
name: Linux ${{matrix.suite}} | |
runs-on: ubuntu-latest | |
needs: | |
- build-matrix | |
strategy: | |
fail-fast: false | |
matrix: | |
suite: ${{ fromJson(needs.build-matrix.outputs.linux-suites) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- run: bundle exec kitchen test ${{ matrix.suite }} -l debug |