Rework build configuration to take advantage of new built-in docker build capabilities.
This commit is contained in:
parent
e61fe3b01e
commit
52eaa63f25
@ -3,8 +3,7 @@ import cliutils, docopt, os, sequtils, strutils, tempfile, uuids
|
|||||||
import strawbosspkg/configuration
|
import strawbosspkg/configuration
|
||||||
import strawbosspkg/core
|
import strawbosspkg/core
|
||||||
import strawbosspkg/server
|
import strawbosspkg/server
|
||||||
|
import strawbosspkg/version
|
||||||
let SB_VER = "0.5.0"
|
|
||||||
|
|
||||||
proc logProcOutput*(outMsg, errMsg: TaintedString, cmd: string) =
|
proc logProcOutput*(outMsg, errMsg: TaintedString, cmd: string) =
|
||||||
let prefix = if cmd.len > 0: cmd & ": " else: ""
|
let prefix = if cmd.len > 0: cmd & ": " else: ""
|
||||||
@ -26,7 +25,7 @@ Options
|
|||||||
(strawboss.config.json).
|
(strawboss.config.json).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
let args = docopt(doc, version = "strawboss v" & SB_VER)
|
let args = docopt(doc, version = "strawboss v" & SB_VERSION)
|
||||||
|
|
||||||
let cfgFile = if args["--config-file"]: $args["--config-file"]
|
let cfgFile = if args["--config-file"]: $args["--config-file"]
|
||||||
else: "strawboss.config.json"
|
else: "strawboss.config.json"
|
||||||
|
@ -7,7 +7,7 @@ from asyncnet import send
|
|||||||
from re import re, find
|
from re import re, find
|
||||||
from timeutils import trimNanoSec
|
from timeutils import trimNanoSec
|
||||||
|
|
||||||
import ./configuration, ./core
|
import ./configuration, ./core, ./version
|
||||||
|
|
||||||
type
|
type
|
||||||
Session = object
|
Session = object
|
||||||
@ -166,8 +166,8 @@ proc start*(cfg: StrawBossConfig): void =
|
|||||||
|
|
||||||
routes:
|
routes:
|
||||||
|
|
||||||
get "/ping":
|
get "/version":
|
||||||
resp($(%"pong"), JSON)
|
resp($(%("strawboss v" & SB_VERSION)), JSON)
|
||||||
|
|
||||||
post "/auth-token":
|
post "/auth-token":
|
||||||
var uname, pwd: string
|
var uname, pwd: string
|
||||||
|
2
src/main/nim/strawbosspkg/version.nim
Normal file
2
src/main/nim/strawbosspkg/version.nim
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
const SB_VERSION* = "0.5.0"
|
||||||
|
|
@ -1,24 +1,26 @@
|
|||||||
{
|
{
|
||||||
"name": "strawboss",
|
"name": "strawboss",
|
||||||
|
"containerImage": "nimlang/nim:0.19.0",
|
||||||
"steps": {
|
"steps": {
|
||||||
"compile": {
|
"compile": {
|
||||||
"artifacts": ["strawboss"],
|
"artifacts": ["strawboss"],
|
||||||
"stepCmd": "docker run -v `pwd`:/usr/src/strawboss -w /usr/src/strawboss jdbernard/nim:0.17.2 nimble install"
|
"containerImage": "nimlang/nim:0.19.0",
|
||||||
|
"stepCmd": "nimble build"
|
||||||
},
|
},
|
||||||
"unittest": {
|
"unittest": {
|
||||||
"depends": ["compile"],
|
"depends": ["compile"],
|
||||||
"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",
|
"stepCmd": "/bin/bash",
|
||||||
"cmdInput": [
|
"cmdInput": [
|
||||||
"cp /usr/build/strawboss/strawboss .",
|
"cp $compile_DIR/strawboss .",
|
||||||
"nimble install --depsOnly",
|
"nimble install --depsOnly",
|
||||||
"nim c -r src/test/nim/run_unit_tests"
|
"nim c -r src/test/nim/run_unit_tests"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"functest": {
|
"functest": {
|
||||||
"depends": ["compile"],
|
"depends": ["compile"],
|
||||||
"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",
|
"stepCmd": "/bin/bash",
|
||||||
"cmdInput": [
|
"cmdInput": [
|
||||||
"cp /usr/build/strawboss/strawboss .",
|
"cp $compile_DIR/strawboss .",
|
||||||
"nimble install --depsOnly",
|
"nimble install --depsOnly",
|
||||||
"nim c -r src/test/nim/run_functional_tests"
|
"nim c -r src/test/nim/run_functional_tests"
|
||||||
]
|
]
|
||||||
@ -26,9 +28,9 @@
|
|||||||
"build": {
|
"build": {
|
||||||
"artifacts": ["strawboss-$VERSION.zip"],
|
"artifacts": ["strawboss-$VERSION.zip"],
|
||||||
"depends": ["compile", "unittest", "functest"],
|
"depends": ["compile", "unittest", "functest"],
|
||||||
"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",
|
"stepCmd": "/bin/bash",
|
||||||
"cmdInput": [
|
"cmdInput": [
|
||||||
"cp /usr/build/strawboss/strawboss .",
|
"cp $compile_DIR/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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user