Increase memory limit in Jenkins CI (#1453)

Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
pull/1455/head
quicksilver 2020-02-29 21:33:16 +08:00 committed by GitHub
parent c3bf270431
commit 0e9cb6ee4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ spec:
tty: true
resources:
limits:
memory: "12Gi"
memory: "14Gi"
cpu: "6.0"
requests:
memory: "8Gi"

View File

@ -23,7 +23,7 @@ spec:
tty: true
resources:
limits:
memory: "12Gi"
memory: "14Gi"
cpu: "6.0"
requests:
memory: "8Gi"

View File

@ -23,7 +23,7 @@ spec:
tty: true
resources:
limits:
memory: "12Gi"
memory: "14Gi"
cpu: "6.0"
# nvidia.com/gpu: 1
aliyun.com/gpu-mem: 2 # GiB

View File

@ -23,7 +23,7 @@ spec:
tty: true
resources:
limits:
memory: "12Gi"
memory: "14Gi"
cpu: "6.0"
# nvidia.com/gpu: 1
aliyun.com/gpu-mem: 2 # GiB

View File

@ -144,7 +144,7 @@ if [[ ${RUN_CPPLINT} == "ON" ]]; then
fi
# compile and build
make -j6 || exit 1
make -j8 || exit 1
if [[ ${PRIVILEGES} == "ON" ]];then
sudo make install || exit 1