
The CI job configuration was auto-converted from legacy job in before. This commit convert the job to zuul v3 native format. Change-Id: I591ca197b6860db31e76fc7af3547ff4a92b2a55
9 lines
217 B
YAML
9 lines
217 B
YAML
- hosts: all
|
|
name: Verify that Docker is installed correctly by running the hello-world image
|
|
tasks:
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
sudo -H -u stack docker run hello-world
|