* Rename artifactsRepo -> buildDataDir to be more explicit about the fact that it holds more than just the artifacts. * Revert removal of run ids. * Move Worker definition into core as part of making the core responsible for accepting run requests. * Make the core module more responsible for internal details of data structure and storage. External callers should not need to construct paths to artifacts, versions, etc. but should be able to call method in the core module to do this work for them. * The working directory no longer contains anything but the checked-out code. All StrawBoss-specific data is stored by StrawBoss elsewhere. * Add a regular maintenance cycle to the server module.
28 lines
779 B
Nim
28 lines
779 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"
|
|
|
|
# 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"
|