Skip to content

Commit 412d8af

Browse files
committed
fixes 15
1 parent 91b0320 commit 412d8af

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

.circleci/config.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ commands:
1717
command: |
1818
./opt/readies/bin/getpy3
1919
BREW_NO_UPDATE=1 ./opt/system-setup.py
20-
git clone git://github.com/antirez/redis.git --branch 5.0.7
21-
(cd redis && make malloc=libc -j $(nproc) && make install)
22-
redis-server --version
20+
git clone git://github.com/antirez/redis.git --branch 5.0.7; cd redis; make malloc=libc -j $(nproc); make install; redis-server --version
2321
./get_deps.sh cpu
2422
- save_cache:
2523
paths:
@@ -79,7 +77,7 @@ jobs:
7977
name: Install dependencies
8078
command: |
8179
./opt/readies/bin/getpy3
82-
BREW_NO_UPDATE=1 ./opt/system-setup.py
80+
./opt/system-setup.py
8381
# git clone git://github.com/antirez/redis.git --branch 5.0.7; cd redis; make malloc=libc -j $(nproc); make install; redis-server --version
8482
- restore_cache:
8583
keys:
@@ -141,13 +139,6 @@ jobs:
141139
image: ubuntu-1604-cuda-10.1:201909-23
142140
steps:
143141
- checkout
144-
# - run:
145-
# name: Checkout LFS
146-
# command: |
147-
# curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
148-
# sudo apt-get install -y git-lfs
149-
# git lfs install
150-
# git lfs pull
151142
- run:
152143
name: Build
153144
command: |

Dockerfile.gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ COPY --from=redis /usr/local/ /usr/local/
2222
COPY ./opt/ opt/
2323
COPY ./test/test_requirements.txt test/
2424

25-
RUN ./opt/readies/bin/getpy
25+
RUN ./opt/readies/bin/getpy3
2626
RUN ./opt/system-setup.py
2727

2828
ARG DEPS_ARGS=""

0 commit comments

Comments
 (0)