From 0cea236d07716f186f2a65f3eb1f81ef61cfe01f Mon Sep 17 00:00:00 2001 From: Joseph Gasparakis Date: Sun, 1 Mar 2015 01:56:01 -0800 Subject: [PATCH] ci: Initial setup of ci tree MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This patch creates some tree structure based on Fatih Deqirmenci's suggestion: genesis ├── common │ ├── manifests │ ├── tools │ └── ci ├── foreman │ ├── tools │ │ └── foo.sh │ └── ci │ ├── deploy.sh │ └── build.sh ├── fuel │ ├── tools │ │ └── foo.sh │ └── ci │ ├── deploy.sh │ └── build.sh └── opensteak ├── tools │ └── foo.sh └── ci ├── deploy.sh └── build.sh So far creating only the deploy and build scripts. Signed-off-by: Joseph Gasparakis --- foreman/ci/build.sh | 0 foreman/ci/deploy.sh | 0 fuel/ci/build.sh | 0 fuel/ci/deploy.sh | 0 opensteak/ci/build.sh | 0 opensteak/ci/deploy.sh | 0 6 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 foreman/ci/build.sh create mode 100644 foreman/ci/deploy.sh create mode 100644 fuel/ci/build.sh create mode 100644 fuel/ci/deploy.sh create mode 100644 opensteak/ci/build.sh create mode 100644 opensteak/ci/deploy.sh diff --git a/foreman/ci/build.sh b/foreman/ci/build.sh new file mode 100644 index 0000000..e69de29 diff --git a/foreman/ci/deploy.sh b/foreman/ci/deploy.sh new file mode 100644 index 0000000..e69de29 diff --git a/fuel/ci/build.sh b/fuel/ci/build.sh new file mode 100644 index 0000000..e69de29 diff --git a/fuel/ci/deploy.sh b/fuel/ci/deploy.sh new file mode 100644 index 0000000..e69de29 diff --git a/opensteak/ci/build.sh b/opensteak/ci/build.sh new file mode 100644 index 0000000..e69de29 diff --git a/opensteak/ci/deploy.sh b/opensteak/ci/deploy.sh new file mode 100644 index 0000000..e69de29 -- 2.16.6