* Implemented periodic maintenance window. * Moved worker creation into the core module. * Worker processes no longer create run requests, but read queued requests from the file system. * Build status and logs have been moved into the StrawBoss data directory. * An initial build status is recorded when the job is queued. * Build status is recorded for build references as well as actual versions. So there will be a build status for "master", for example, that is overwritten whenever "master" is built for that step. * RunRequests now include a timestamp. * Added a Run object to contain both a RunRequest and the corresponding BuildStatus for that run. * API endpoints that talk about runs now return Run objects instead of RunRequests. * Moved all data layer operations into the core module so that the "database API" only lives in one place.
28 lines
788 B
Nim
28 lines
788 B
Nim
# Package
|
|
|
|
bin = @["strawboss"]
|
|
version = "0.2.0"
|
|
author = "Jonathan Bernard"
|
|
description = "My personal continious integration worker."
|
|
license = "MIT"
|
|
srcDir = "src/main/nim"
|
|
|
|
# Dependencies
|
|
|
|
requires @["nim >= 0.16.1", "docopt >= 0.6.5", "isaac >= 0.1.2", "tempfile", "jester", "bcrypt",
|
|
"untar", "uuids"]
|
|
|
|
requires "https://github.com/yglukhov/nim-jwt"
|
|
requires "https://git.jdb-labs.com/jdb/nim-lang-utils.git"
|
|
requires "https://git.jdb-labs.com/jdb/nim-cli-utils.git >= 0.3.1"
|
|
|
|
# Tasks
|
|
#
|
|
task functest, "Runs the functional test suite.":
|
|
exec "nimble build"
|
|
exec "nim c -r src/test/nim/run_functional_tests.nim"
|
|
|
|
task unittest, "Runs the unit test suite.":
|
|
exec "nimble build"
|
|
exec "nim c -r src/test/nim/run_unit_tests.nim"
|