Preliminary configuration for StrawBoss to build itself.

This commit is contained in:
Jonathan Bernard 2017-05-11 10:46:56 -05:00
parent a1100f17d8
commit f6b347a4ed

12
strawboss.projectdef.json Normal file
View File

@ -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" }
}
}