Skip to content

Commit 6d29eef

Browse files
rafiefilipecosta90
authored andcommitted
Introduced readies submodule (#377)
* Introduced readies submodule * Fix in paella * Updated get_deps.sh and docs
1 parent ad3e6b9 commit 6d29eef

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.circleci/config.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ commands:
2020
- checkout
2121
- run:
2222
name: Submodule checkout
23-
command: git submodule update --init --recursive
23+
command: git submodule update --init --recursive
2424
- restore_cache:
2525
keys:
2626
- v1-dependencies-{{ checksum "get_deps.sh" }}
@@ -36,6 +36,21 @@ commands:
3636
paths:
3737
- deps
3838
key: build-dependencies-{{ checksum "get_deps.sh" }}
39+
- run:
40+
name: Set up workspace
41+
command: |
42+
mkdir -p ~/workspace
43+
chown `whoami` ~/workspace
44+
45+
test_steps:
46+
parameters:
47+
platform:
48+
type: string
49+
steps:
50+
- checkout
51+
- run:
52+
name: Submodule checkout
53+
command: git submodule update --init --recursive
3954
- run:
4055
name: Build
4156
command: make -C opt all SHOW=1

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can compile and build the module from its source code. The [Developer](devel
3434
You can obtain the module's source code by cloning the project's repository using git like so:
3535

3636
```sh
37-
git clone https://github.com/RedisAI/RedisAI
37+
git clone --recursive https://github.com/RedisAI/RedisAI
3838
```
3939

4040
Switch to the project's directory with:

0 commit comments

Comments
 (0)