File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ You can compile and build the module from its source code. The [Developer](devel
3434You 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
4040Switch to the project's directory with:
You can’t perform that action at this time.
0 commit comments