38 lines
990 B
JSON
38 lines
990 B
JSON
{
|
|
"name": "strawboss",
|
|
"containerImage": "nimlang/nim:0.19.0",
|
|
"steps": {
|
|
"compile": {
|
|
"artifacts": ["strawboss"],
|
|
"stepCmd": "nimble build"
|
|
},
|
|
"unittest": {
|
|
"depends": ["compile"],
|
|
"stepCmd": "/bin/bash",
|
|
"cmdInput": [
|
|
"cp $compile_DIR/strawboss .",
|
|
"nimble install --depsOnly",
|
|
"nim c -r src/test/nim/run_unit_tests"
|
|
]
|
|
},
|
|
"functest": {
|
|
"depends": ["compile"],
|
|
"stepCmd": "/bin/bash",
|
|
"cmdInput": [
|
|
"cp $compile_DIR/strawboss .",
|
|
"nimble install --depsOnly",
|
|
"nim c -r src/test/nim/run_functional_tests"
|
|
]
|
|
},
|
|
"build": {
|
|
"artifacts": ["strawboss-$VERSION.zip"],
|
|
"depends": ["compile", "unittest", "functest"],
|
|
"stepCmd": "/bin/bash",
|
|
"cmdInput": [
|
|
"cp $compile_DIR/strawboss .",
|
|
"zip strawboss-$VERSION.zip strawboss strawboss.config.json example.json src/main/systemd/strawboss.service"
|
|
]
|
|
}
|
|
}
|
|
}
|