mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Add back Ubuntu 16.04 packages + testing
Ubuntu 16.04 is no longer EOL. They've extended support for a full 10 years so it goes EOL in 2026 now. Signed-off-by: Tim Smith <tsmith@chef.io>
This commit is contained in:
parent
3f7d40318b
commit
8c0d6b0ef0
3 changed files with 29 additions and 1 deletions
|
@ -71,6 +71,7 @@ steps:
|
|||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-debian-10"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
|
@ -118,6 +119,7 @@ steps:
|
|||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-oraclelinux-8"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
|
@ -150,6 +152,22 @@ steps:
|
|||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-ubuntu-1604"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-ubuntu-1604
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-ubuntu-1804"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
|
@ -165,6 +183,7 @@ steps:
|
|||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-ubuntu-2004"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
|
|
|
@ -43,7 +43,8 @@ builder-to-testers-map:
|
|||
ubuntu-18.04-aarch64:
|
||||
- ubuntu-18.04-aarch64
|
||||
- ubuntu-20.04-aarch64
|
||||
ubuntu-18.04-x86_64:
|
||||
ubuntu-16.04-x86_64:
|
||||
- ubuntu-16.04-x86_64
|
||||
- ubuntu-18.04-x86_64
|
||||
- ubuntu-20.04-x86_64
|
||||
windows-2012r2-x86_64:
|
||||
|
|
|
@ -66,12 +66,20 @@ platforms:
|
|||
image: dokken/opensuse-leap-15
|
||||
pid_one_command: /bin/systemd
|
||||
|
||||
- name: ubuntu-16.04
|
||||
driver:
|
||||
image: dokken/ubuntu-16.04
|
||||
pid_one_command: /bin/systemd
|
||||
intermediate_instructions:
|
||||
- RUN /usr/bin/apt-get update -y
|
||||
|
||||
- name: ubuntu-18.04
|
||||
driver:
|
||||
image: dokken/ubuntu-18.04
|
||||
pid_one_command: /bin/systemd
|
||||
intermediate_instructions:
|
||||
- RUN /usr/bin/apt-get update -y
|
||||
|
||||
- name: ubuntu-20.04
|
||||
driver:
|
||||
image: dokken/ubuntu-20.04
|
||||
|
|
Loading…
Reference in a new issue