From f6b347a4ed2916a9a8caafd592f9f1a720fdcf5d Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Thu, 11 May 2017 10:46:56 -0500 Subject: [PATCH] Preliminary configuration for StrawBoss to build itself. --- strawboss.projectdef.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 strawboss.projectdef.json diff --git a/strawboss.projectdef.json b/strawboss.projectdef.json new file mode 100644 index 0000000..dc631a9 --- /dev/null +++ b/strawboss.projectdef.json @@ -0,0 +1,12 @@ +{ + "name": "strawboss", + "steps": { + "build": { + "artifacts": ["strawboss"], + "stepCmd": "nimble build" + }, + "test": { "depends": ["unittest", "functest"] }, + "functest": { "stepCmd": "nimble functest" }, + "unittest": { "stepCmd": "nimble unittest" } + } +}