Add building of wakunode/wakusim in CI

This commit is contained in:
kdeme 2020-01-20 22:15:09 +01:00 committed by zah
parent 90aaa6545f
commit da1adb37e6
2 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,7 @@ test_script:
# the "go-checks" target fails in AppVeyor, for some reason; easier to disable than to debug
# - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% DISABLE_GO_CHECKS=1 libnimbus.so
# - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% DISABLE_GO_CHECKS=1 libnimbus.a
- mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% wakusim
deploy: off

View File

@ -54,7 +54,7 @@ script:
- build/nimbus --help
# -static option will not work for osx unless static system libraries are provided
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test test-reproducibility wrappers;
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test test-reproducibility wrappers wakusim;
else
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test test-reproducibility wrappers wrappers-static;
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test test-reproducibility wrappers wrappers-static wakusim;
fi