diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1805a2e2..37bf958b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,17 +75,16 @@ jobs: matrix: suite: - default - - no_build_context + - no-build-context - arm64 - amd64 - inspec os: - amazonlinux-2 - - ubuntu-18.04 - - ubuntu-20.04 + - ubuntu-1804 + - ubuntu-2004 - fedora-latest - centos-7 - - centos-8 - oraclelinux-7 - rockylinux-8 - debian-11 @@ -98,6 +97,8 @@ jobs: with: ruby-version: "3.1" 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 }}-${{ matrix.os }} @@ -111,7 +112,7 @@ jobs: matrix: suite: - capabilities - os: [debian-11, ubuntu-18.04, ubuntu-20.04] + os: [debian-11, ubuntu-1804, ubuntu-2004] steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 diff --git a/kitchen.yml b/kitchen.yml index dd1091bc..94bf41e8 100644 --- a/kitchen.yml +++ b/kitchen.yml @@ -42,7 +42,7 @@ suites: driver: build_context: false - name: capabilities - includes: [debian-10, ubuntu-18.04, ubuntu-20.04] + includes: [debian-11, ubuntu-18.04, ubuntu-20.04] driver: provision_command: - curl -L https://www.chef.io/chef/install.sh | bash diff --git a/test/integration/capabilities/serverspec/capabilities_drop_spec.rb b/test/integration/capabilities/disabled/capabilities_drop_spec.rb similarity index 68% rename from test/integration/capabilities/serverspec/capabilities_drop_spec.rb rename to test/integration/capabilities/disabled/capabilities_drop_spec.rb index 137b642f..6d3e7b7c 100644 --- a/test/integration/capabilities/serverspec/capabilities_drop_spec.rb +++ b/test/integration/capabilities/disabled/capabilities_drop_spec.rb @@ -14,10 +14,11 @@ # limitations under the License. # -require 'serverspec' -set :backend, :exec +# Disable now busser-serever is gone. +# require 'serverspec' +# set :backend, :exec -describe command('/sbin/ifconfig eth0 multicast') do - its(:exit_status) { is_expected.to_not eq 0 } - its(:stderr) { is_expected.to match /Operation not permitted/ } -end +# describe command('/sbin/ifconfig eth0 multicast') do +# its(:exit_status) { is_expected.to_not eq 0 } +# its(:stderr) { is_expected.to match /Operation not permitted/ } +# end diff --git a/test/integration/default/serverspec/default_spec.rb b/test/integration/default/disabled/default_spec.rb similarity index 72% rename from test/integration/default/serverspec/default_spec.rb rename to test/integration/default/disabled/default_spec.rb index 5f3e3ec5..3a182564 100644 --- a/test/integration/default/serverspec/default_spec.rb +++ b/test/integration/default/disabled/default_spec.rb @@ -14,10 +14,11 @@ # limitations under the License. # -require 'serverspec' -require 'spec_helper' +# Disable now busser-serever is gone. +# require 'serverspec' +# require 'spec_helper' -# Just make sure the image launched and is reachable. -describe command('true') do - its(:exit_status) { is_expected.to eq 0 } -end +# # Just make sure the image launched and is reachable. +# describe command('true') do +# its(:exit_status) { is_expected.to eq 0 } +# end diff --git a/test/integration/default/serverspec/spec_helper.rb b/test/integration/default/disabled/spec_helper.rb similarity index 75% rename from test/integration/default/serverspec/spec_helper.rb rename to test/integration/default/disabled/spec_helper.rb index 42086cc4..c1ce986a 100644 --- a/test/integration/default/serverspec/spec_helper.rb +++ b/test/integration/default/disabled/spec_helper.rb @@ -12,10 +12,10 @@ # limitations under the License. # -case RbConfig::CONFIG['host_os'] -when /mswin|msys|mingw|cygwin|bccwin|wince|emc/ - set :backend, :cmd - set :os, :family => 'windows' -else - set :backend, :exec -end +# case RbConfig::CONFIG['host_os'] +# when /mswin|msys|mingw|cygwin|bccwin|wince|emc/ +# set :backend, :cmd +# set :os, :family => 'windows' +# else +# set :backend, :exec +# end