Fix test targets in build definition.

This commit is contained in:
Jonathan Bernard 2017-12-01 02:23:55 -06:00
parent b85cf8b367
commit 07037616ac

View File

@ -10,6 +10,7 @@
"stepCmd": "docker run -v `pwd`:/usr/src/strawboss -v $compile_DIR:/usr/build/strawboss -w /usr/src/strawboss -i jdbernard/nim:0.17.2 /bin/bash",
"cmdInput": [
"cp /usr/build/strawboss/strawboss .",
"nimble install",
"nim c -r src/test/nim/run_unit_tests"
]
},
@ -18,6 +19,7 @@
"stepCmd": "docker run -v `pwd`:/usr/src/strawboss -v $compile_DIR:/usr/build/strawboss -w /usr/src/strawboss -i jdbernard/nim:0.17.2 /bin/bash",
"cmdInput": [
"cp /usr/build/strawboss/strawboss .",
"nimble install",
"nim c -r src/test/nim/run_functional_tests"
]
},
@ -27,9 +29,7 @@
"stepCmd": "docker run -v `pwd`:/usr/src/strawboss -v $compile_DIR:/usr/build/strawboss -w /usr/src/strawboss -i jdbernard/nim:0.17.2 /bin/bash",
"cmdInput": [
"cp /usr/build/strawboss/strawboss .",
"zip strawboss-$VERSION.zip strawboss \ ",
" strawboss.config.json example.json \ ",
" src/main/systemd/strawboss.service"
"zip strawboss-$VERSION.zip strawboss strawboss.config.json example.json src/main/systemd/strawboss.service"
]
}
}