Skip to content

Commit 16729d3

Browse files
authored
Introduced readies submodule (#377)
* Introduced readies submodule * Fix in paella * Updated get_deps.sh and docs
1 parent 04ea2f7 commit 16729d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+23
-1868
lines changed

.circleci/config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ commands:
77
type: string
88
steps:
99
- checkout
10+
- run:
11+
name: Submodule checkout
12+
command: git submodule update --init --recursive
1013
- restore_cache:
1114
keys:
1215
- v1-dependencies-{{ checksum "get_deps.sh" }}
@@ -34,6 +37,9 @@ commands:
3437
type: string
3538
steps:
3639
- checkout
40+
- run:
41+
name: Submodule checkout
42+
command: git submodule update --init --recursive
3743
- run:
3844
name: Build
3945
command: make -C opt all SHOW=1
@@ -81,6 +87,9 @@ jobs:
8187
- image: redisfab/rmbuilder:6.0.1-x64-buster
8288
steps:
8389
- checkout
90+
- run:
91+
name: Submodule checkout
92+
command: git submodule update --init --recursive
8493
- restore_cache:
8594
keys:
8695
- build-dependencies-{{ checksum "get_deps.sh" }}
@@ -127,6 +136,9 @@ jobs:
127136
image: ubuntu-1604:201903-01
128137
steps:
129138
- checkout
139+
- run:
140+
name: Submodule checkout
141+
command: git submodule update --init --recursive
130142
- run:
131143
name: Checkout LFS
132144
command: |
@@ -154,6 +166,9 @@ jobs:
154166
image: ubuntu-1604-cuda-10.1:201909-23
155167
steps:
156168
- checkout
169+
- run:
170+
name: Submodule checkout
171+
command: git submodule update --init --recursive
157172
- run:
158173
name: Build
159174
command: |

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "opt/readies"]
2+
path = opt/readies
3+
url = https://github.com/RedisLabsModules/readies.git

docs/quickstart.md

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

3232
```sh
33-
git clone https://github.com/RedisAI/RedisAI
33+
git clone --recursive https://github.com/RedisAI/RedisAI
3434
```
3535

3636
Switch to the project's directory with:

get_deps.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ LIBTORCH=libtorch
6666
MKL=mkl
6767
ONNXRUNTIME=onnxruntime
6868

69+
git submodule update --init --recursive || true
70+
6971
######################################################################################## DLPACK
7072

7173
if [[ $WITH_DLPACK != 0 ]]; then

opt/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
ROOT:=..
3+
MK.pyver:=3
34
include readies/mk/main
45

56
MK.cmake:=1

opt/readies

Submodule readies added at c464712

opt/readies/.gitignore

Lines changed: 0 additions & 36 deletions
This file was deleted.

opt/readies/LICENSE

Lines changed: 0 additions & 29 deletions
This file was deleted.

opt/readies/README.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

opt/readies/bin/filter-colors

Lines changed: 0 additions & 4 deletions
This file was deleted.

opt/readies/bin/getdocker

Lines changed: 0 additions & 61 deletions
This file was deleted.

opt/readies/bin/getgosu

Lines changed: 0 additions & 36 deletions
This file was deleted.

opt/readies/bin/getpy2

Lines changed: 0 additions & 35 deletions
This file was deleted.

opt/readies/bin/getpy3

Lines changed: 0 additions & 35 deletions
This file was deleted.

opt/readies/bin/getredis5

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)