From 07037616ac206c8d27a1869143311a6ee0ff3f62 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Fri, 1 Dec 2017 02:23:55 -0600 Subject: [PATCH] Fix test targets in build definition. --- strawboss.projectdef.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/strawboss.projectdef.json b/strawboss.projectdef.json index ac47782..5aecbbb 100644 --- a/strawboss.projectdef.json +++ b/strawboss.projectdef.json @@ -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" ] } }