Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing on debian 10 and 11 #298

Merged
merged 1 commit into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
- centos-7
- centos-8
- oracle-7
# - debian-9 # something is broken here
- debian-10
- debian-11
- fedora-28
- fedora-29
# - opensuse-42 # something is broken here
Expand Down Expand Up @@ -82,6 +82,8 @@ jobs:
- default-centos-7
- default-ubuntu-18-04
- default-ubuntu-20-04
- default-debian-10
- default-debian-11
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
Expand Down
6 changes: 6 additions & 0 deletions .kitchen.do.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,15 @@ platforms:
- name: debian-10
driver_config:
image: debian-10-x64
lifecycle:
post_create:
- remote: sleep 10; while pgrep apt-get >/dev/null; do echo "Waiting for apt-get..."; sleep 5; done # let the installation of DO droplet-agent to finish and unlock dpkg
- name: debian-11
driver_config:
image: debian-11-x64
lifecycle:
post_create:
- remote: sleep 10; while pgrep apt-get >/dev/null; do echo "Waiting for apt-get..."; sleep 5; done # let the installation of DO droplet-agent to finish and unlock dpkg
- name: ubuntu-18-04
driver_config:
image: ubuntu-18-04-x64
Expand Down
8 changes: 4 additions & 4 deletions .kitchen.dokken.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ platforms:
driver:
image: oraclelinux:7
pid_one_command: /usr/lib/systemd/systemd
- name: debian-9
- name: debian-10
driver:
image: dokken/debian-9
image: dokken/debian-10
intermediate_instructions:
- RUN /usr/bin/apt-get update
pid_one_command: /bin/systemd
- name: debian-10
- name: debian-11
driver:
image: dokken/debian-10
image: dokken/debian-11
intermediate_instructions:
- RUN /usr/bin/apt-get update
pid_one_command: /bin/systemd
Expand Down
2 changes: 1 addition & 1 deletion .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ platforms:
- name: centos-7
- name: centos-8
- name: oracle-7
- name: debian-9
- name: debian-10
- name: debian-11
- name: fedora-28
- name: fedora-29
- name: opensuse-leap-42
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ It will not:

### Platform

- Debian 9
- Debian 10, 11
- Ubuntu 18.04, 20.04
- RHEL 6, 7
- CentOS 6, 7
Expand Down