Skip to content

Commit

Permalink
Merge pull request #63 from myii/chore/use-jessie-backports
Browse files Browse the repository at this point in the history
ci(kitchen+travis): use `debian:jessie-backports` as `debian-8`
  • Loading branch information
myii authored Feb 28, 2019
2 parents be780db + b25fbdc commit c6fc98f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ before_install:
env:
matrix:
- INSTANCE: default-debian-9
# - INSTANCE: default-debian-8
- INSTANCE: default-debian-8-backports
- INSTANCE: default-ubuntu-1804
- INSTANCE: default-ubuntu-1604
- INSTANCE: default-centos-7
Expand Down
18 changes: 10 additions & 8 deletions kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,25 @@ platforms:
# test `systemd` services in docker
- name: debian-9
driver_config:
image: debian:9
run_command: /lib/systemd/systemd
provision_command:
- apt-get update && apt-get install -y udev
- name: debian-8-backports
driver_config:
image: debian:jessie-backports
run_command: /lib/systemd/systemd
provision_command:
- apt-get update && apt-get install -y udev
# With the release of `2019.2`, `debian-8` is no longer working
# Disabling until the following upstream bug has been resolved:
# * https://github.com/saltstack/salt/issues/51808
# - name: debian-8
# driver_config:
# run_command: /lib/systemd/systemd
# provision_command:
# - apt-get update && apt-get install -y udev
- name: ubuntu-18.04
driver_config:
image: ubuntu:18.04
run_command: /lib/systemd/systemd
provision_command:
- apt-get update && apt-get install -y udev
- name: ubuntu-16.04
driver_config:
image: ubuntu:16.04
run_command: /lib/systemd/systemd
provision_command:
- apt-get update && apt-get install -y udev
Expand All @@ -48,6 +49,7 @@ platforms:
# run_command: /usr/lib/systemd/systemd
- name: fedora
driver_config:
image: fedora
run_command: /usr/lib/systemd/systemd
provision_command:
- yum -y update && yum -y install udev
Expand Down

0 comments on commit c6fc98f

Please sign in to comment.