save some CI time by combining tools build

This commit is contained in:
jangko 2020-07-21 11:28:03 +07:00
parent ab5c763a84
commit 91eb5db346
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
2 changed files with 23 additions and 9 deletions

View File

@ -15,16 +15,8 @@ BUILD_SYSTEM_DIR := vendor/nimbus-build-system
# debugging tools + testing tools
TOOLS := \
premix \
persist \
debug \
dumper \
hunter \
regress \
tracerTestGen \
persistBlockTestGen
test_tools_build
TOOLS_DIRS := \
premix \
tests
# comma-separated values for the "clean" target
TOOLS_CSV := $(subst $(SPACE),$(COMMA),$(TOOLS))

View File

@ -0,0 +1,22 @@
# nimbus
# Copyright (c) 2018 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT
# * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
# at your option. This file may not be copied, modified, or distributed except according to those terms.
# this module helps CI save time
# when try to test buildability of these tools.
# They never run in the CI so it is ok to combine them
{. warning[UnusedImport]:off .}
import
../premix/premix,
../premix/persist,
../premix/debug,
../premix/dumper,
../premix/hunter,
../premix/regress,
./tracerTestGen,
./persistBlockTestGen