Disable static build for osx
This commit is contained in:
parent
9472cf31a9
commit
c8e384e00a
|
@ -51,5 +51,9 @@ script:
|
|||
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" update # to allow a newer Nim version to be detected
|
||||
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}"
|
||||
- build/nimbus --help
|
||||
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test test-reproducibility wrappers wrappers-static
|
||||
|
||||
# -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;
|
||||
else
|
||||
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test test-reproducibility wrappers wrappers-static;
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue