From eca33739b25194fe6923d5f000cf1fa7007a3e35 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Wed, 15 Feb 2017 23:27:38 -0600 Subject: [PATCH] Initial commit with basic architecural thoughts. --- README.md | 15 +++++++++++++++ strawboss.nimble | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 README.md create mode 100644 strawboss.nimble diff --git a/README.md b/README.md new file mode 100644 index 0000000..09d2983 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +Straw Boss CI +============= + +* Pipeline: series of named steps. +* Step: named set of operations (make, script, something extensible). + Optionally names an artifact that is the result of the step. +* Artifact: resulting output from a step. strawboss may skip step execution if + it already has an artifact cached from that step. +* Configuration is two-part. Pipeline, step, and artifact definition are part + of the project configuration (.strawboss.json? yaml?). Environment + configuration lives on the strawboss server (supplies DB info, etc.). +* REST API? +* Step execution happens within the root directory of a fresh copy of the repo. + Commit identifiers (hash/ref/etc.) are supplied when a build is triggered and + the fresh copy is checked out at that reference. diff --git a/strawboss.nimble b/strawboss.nimble new file mode 100644 index 0000000..13f034b --- /dev/null +++ b/strawboss.nimble @@ -0,0 +1,12 @@ +# Package + +bin = @["strawboss"] +version = "0.1.0" +author = "Jonathan Bernard" +description = "My personal continious integration worker." +license = "MIT" + +# Dependencies + +requires @["nim >= 0.16.1", "docopt >= 0.1.0"] +