redis: make tests single threaded (maybe that's messing with it?)

This commit is contained in:
Starbeamrainbowlabs 2020-12-04 02:30:53 +00:00
parent 25bccbf2f0
commit ae5169e62d
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ RUN tar -xf /tmp/redis-stable.tar.gz -C /srv
WORKDIR /srv/redis-stable
RUN make distclean && make -j$(nproc) && make test -j$(nproc)
RUN make distclean && make -j$(nproc) && make test
###############################################################################