Commit b1c904a 1 parent 28db79d commit b1c904a Copy full SHA for b1c904a
File tree 6 files changed +15
-15
lines changed
integration/default/disabled
6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 26
26
bundler-cache : true
27
27
- name : Set up Docker Buildx
28
28
uses : docker/setup-buildx-action@v3
29
- - run : bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
29
+ - run : bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} -l debug
30
30
31
31
integration-linux :
32
32
name : Linux ${{matrix.suite}} ${{matrix.os}}
62
62
uses : docker/setup-qemu-action@v3
63
63
- name : Set up Docker Buildx
64
64
uses : docker/setup-buildx-action@v3
65
- - run : bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
65
+ - run : bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} -l debug
66
66
67
67
integration-capabilities :
68
68
name : Linux ${{matrix.suite}} ${{matrix.os}}
83
83
bundler-cache : true
84
84
- name : Set up Docker Buildx
85
85
uses : docker/setup-buildx-action@v3
86
- - run : bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
86
+ - run : bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }} -l debug
Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 3.0 .0"
2
+ "." : " 3.2 .0"
3
3
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ provisioner:
13
13
name : dummy
14
14
15
15
platforms :
16
- - name : amazonlinux-2023
16
+ - name : amazonlinux-2
17
17
- name : ubuntu-22.04
18
18
- name : ubuntu-24.04
19
19
- name : fedora-latest
Original file line number Diff line number Diff line change 18
18
19
19
require_relative "../docker/helpers/inspec_helper"
20
20
21
- require_relative "../../docker/version"
21
+ # require_relative "../../docker/version"
22
22
require_relative "../../train/docker"
23
23
24
24
module Kitchen
25
25
module Transport
26
26
class Docker < Kitchen ::Transport ::Base
27
27
class DockerFailed < TransportFailed ; end
28
28
29
- kitchen_transport_api_version 1
29
+ # kitchen_transport_api_version 1
30
30
plugin_version Kitchen ::VERSION
31
31
32
32
default_config :binary , "docker"
Original file line number Diff line number Diff line change 1
- FROM almalinux:7
1
+ FROM almalinux:latest
2
2
RUN yum clean all
3
3
RUN yum install -y sudo openssh-server openssh-clients which curl htop
4
4
RUN ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
Original file line number Diff line number Diff line change 15
15
#
16
16
17
17
# Disable now busser-server is gone.
18
- require "serverspec"
19
- require "spec_helper"
20
-
21
- # # Just make sure the image launched and is reachable.
22
- describe command ( "true" ) do
23
- its ( :exit_status ) { is_expected . to eq 0 }
24
- end
18
+ # require "serverspec"
19
+ # require "spec_helper"
20
+ #
21
+ # Just make sure the image launched and is reachable.
22
+ # describe command("true") do
23
+ # its(:exit_status) { is_expected.to eq 0 }
24
+ # end
You can’t perform that action at this time.
0 commit comments