mirror of
https://github.com/inspec/inspec
synced 2024-11-22 12:43:07 +00:00
d8200f8539
* Enable secrets mode on verify pipelines, which apparently works on ruby3.0 image anyway on coverage pipeline Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Fetch chef licensing server and API key from vault, linux implementation Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Fetch chef licensing server and API key from vault, windows implementation Signed-off-by: Sonu Saha <sonu.saha@progress.com> * Add diagnostic to test whether API key has been set and exit if not Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Secrets missed on two jobs Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Add diagnostic to test whether API key has been set on windows Signed-off-by: Sonu Saha <sonu.saha@progress.com> * Add license key to env var list and gate verify pipeline on it Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> --------- Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> Signed-off-by: Sonu Saha <sonu.saha@progress.com> Co-authored-by: Sonu Saha <sonu.saha@progress.com>
77 lines
1.6 KiB
YAML
77 lines
1.6 KiB
YAML
---
|
|
expeditor:
|
|
defaults:
|
|
buildkite:
|
|
timeout_in_minutes: 60
|
|
retry:
|
|
automatic:
|
|
limit: 1
|
|
|
|
steps:
|
|
|
|
- label: lint-ruby-3.0
|
|
command:
|
|
- RAKE_TASK=test:lint /workdir/.expeditor/buildkite/verify.sh
|
|
expeditor:
|
|
secrets: true
|
|
executor:
|
|
docker:
|
|
image: ruby:3.0
|
|
|
|
- label: run-tests-ruby-2.7
|
|
command:
|
|
- /workdir/.expeditor/buildkite/verify.sh
|
|
expeditor:
|
|
secrets: true
|
|
executor:
|
|
docker:
|
|
image: ruby:2.7
|
|
|
|
- label: run-tests-ruby-3.0
|
|
command:
|
|
- /workdir/.expeditor/buildkite/verify.sh
|
|
expeditor:
|
|
secrets: true
|
|
executor:
|
|
docker:
|
|
image: ruby:3.0
|
|
|
|
- label: run-tests-ruby-3.1
|
|
command:
|
|
- /workdir/.expeditor/buildkite/verify.sh
|
|
expeditor:
|
|
secrets: true
|
|
executor:
|
|
docker:
|
|
image: ruby:3.1
|
|
|
|
- label: isolated-tests-ruby-3.0
|
|
command:
|
|
- RAKE_TASK=test:isolated /workdir/.expeditor/buildkite/verify.sh
|
|
expeditor:
|
|
secrets: true
|
|
executor:
|
|
docker:
|
|
image: ruby:3.0
|
|
|
|
- label: isolated-tests-ruby-3.1
|
|
command:
|
|
- RAKE_TASK=test:isolated /workdir/.expeditor/buildkite/verify.sh
|
|
expeditor:
|
|
secrets: true
|
|
executor:
|
|
docker:
|
|
image: ruby:3.1
|
|
|
|
- label: run-tests-ruby-3.1-windows
|
|
command:
|
|
- /workdir/.expeditor/buildkite/verify.ps1
|
|
expeditor:
|
|
secrets: true
|
|
executor:
|
|
docker:
|
|
environment:
|
|
- BUILDKITE
|
|
host_os: windows
|
|
shell: ["powershell", "-Command"]
|
|
image: rubydistros/windows-2019:3.1
|