Skip to content

Commit 40d4302

Browse files
committed
fixes 10
1 parent c4775f1 commit 40d4302

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ commands:
2424
- save_cache:
2525
paths:
2626
- deps
27+
- /usr/local
2728
key: build-dependencies-{{ checksum "get_deps.sh" }}
2829
- run:
2930
name: Set up workspace
@@ -79,9 +80,7 @@ jobs:
7980
command: |
8081
./opt/readies/bin/getpy3
8182
BREW_NO_UPDATE=1 ./opt/system-setup.py
82-
git clone git://github.com/antirez/redis.git --branch 5.0.7
83-
(cd redis && make malloc=libc -j $(nproc) && make install)
84-
redis-server --version
83+
# git clone git://github.com/antirez/redis.git --branch 5.0.7; cd redis; make malloc=libc -j $(nproc); make install; redis-server --version
8584
- restore_cache:
8685
keys:
8786
- build-dependencies-{{ checksum "get_deps.sh" }}

Dockerfile.gpu-test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ COPY ./opt/ opt/
2222
COPY ./test/test_requirements.txt test/
2323

2424
RUN ./opt/readies/bin/getpy3
25+
RUN ./opt/system-setup.py
2526
RUN set -e ;\
2627
python3 -m virtualenv venv ;\
2728
. ./venv/bin/activate ;\

opt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ test:
193193
GEN=$(GEN) AOF=$(AOF) SLAVES=$(SLAVES) \
194194
VALGRIND=$(VALGRIND) \
195195
$(ROOT)/test/tests.sh
196-
# $(COVERAGE_COLLECT_REPORT)
196+
$(COVERAGE_COLLECT_REPORT)
197197

198198
valgrind:
199199
$(SHOW)$(ROOT)/test/valgrind.sh $(realpath $(INSTALLED_TARGET))

opt/system-setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, nop=False):
1717
def common_first(self):
1818
self.install_downloaders()
1919
self.setup_pip()
20-
self.pip3_install("wheel")
20+
self.pip3_install("wheel virtualenv")
2121
self.pip3_install("setuptools --upgrade")
2222

2323
if self.os == 'linux':

0 commit comments

Comments
 (0)