From 7b9a4306cd59662ec842e2e66b88b2d2568ccdea Mon Sep 17 00:00:00 2001 From: Tristan Cacqueray Date: Mon, 27 Jan 2020 13:34:31 +0000 Subject: [PATCH] Add Zuul CI configuration --- .zuul.yaml | 8 ++++++++ ci/run.yaml | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 .zuul.yaml create mode 100644 ci/run.yaml diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 00000000..9b2b1bb1 --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,8 @@ +- job: + name: os-autoinst-test + run: ci/run.yaml + +- project: + check: + jobs: + - os-autoinst-test diff --git a/ci/run.yaml b/ci/run.yaml new file mode 100644 index 00000000..3c64eb70 --- /dev/null +++ b/ci/run.yaml @@ -0,0 +1,6 @@ +- hosts: all + tasks: + - name: Run test + command: ls -la + args: + chdir: '{{ zuul.project.src_dir }}'