diff --git a/.github/workflows/gae.yml b/.github/workflows/gae.yml index a19f2fc0807e..bd8d4e804b47 100644 --- a/.github/workflows/gae.yml +++ b/.github/workflows/gae.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-20.04 if: ${{ github.repository == 'alibaba/GraphScope' }} container: - image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.4 + image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.5 options: --shm-size 4096m steps: diff --git a/.github/workflows/networkx-forward-algo-nightly.yml b/.github/workflows/networkx-forward-algo-nightly.yml index faab0a0c55b5..aa1554db0941 100644 --- a/.github/workflows/networkx-forward-algo-nightly.yml +++ b/.github/workflows/networkx-forward-algo-nightly.yml @@ -16,7 +16,7 @@ jobs: run: shell: bash --noprofile --norc -eo pipefail {0} container: - image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.4 + image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.5 options: --shm-size 4096m diff --git a/analytical_engine/CMakeLists.txt b/analytical_engine/CMakeLists.txt index cf1ef48493c1..9ee3e2a3f825 100644 --- a/analytical_engine/CMakeLists.txt +++ b/analytical_engine/CMakeLists.txt @@ -190,7 +190,7 @@ endif () find_package(libgrapelite REQUIRED) include_directories(${LIBGRAPELITE_INCLUDE_DIRS}) -find_package(vineyard 0.8.4 REQUIRED) +find_package(vineyard 0.8.5 REQUIRED) include_directories(${VINEYARD_INCLUDE_DIRS}) add_compile_options(-DENABLE_SELECTOR) diff --git a/k8s/Makefile b/k8s/Makefile index f533afd4b157..42c9bdf2a202 100644 --- a/k8s/Makefile +++ b/k8s/Makefile @@ -30,7 +30,7 @@ else endif VERSION ?= latest -VINEYARD_VERSION ?= v0.8.4 +VINEYARD_VERSION ?= v0.8.5 PROFILE ?= release CI ?= false diff --git a/k8s/actions-runner-controller/manylinux/Dockerfile b/k8s/actions-runner-controller/manylinux/Dockerfile index 850c2bdddaec..ee3ba89b73f1 100644 --- a/k8s/actions-runner-controller/manylinux/Dockerfile +++ b/k8s/actions-runner-controller/manylinux/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.4 +FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.5 ARG TARGETPLATFORM ARG RUNNER_VERSION=2.287.1 diff --git a/k8s/graphscope-dev.Dockerfile b/k8s/graphscope-dev.Dockerfile index b339713da640..09afa7d7df55 100644 --- a/k8s/graphscope-dev.Dockerfile +++ b/k8s/graphscope-dev.Dockerfile @@ -4,7 +4,7 @@ # the result image includes all runtime stuffs of graphscope, with analytical engine, # learning engine and interactive engine installed. -ARG BASE_VERSION=v0.8.4 +ARG BASE_VERSION=v0.8.5 FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:$BASE_VERSION as builder ARG NETWORKX=ON diff --git a/k8s/graphscope-store.Dockerfile b/k8s/graphscope-store.Dockerfile index 418f257a54f5..6b731c6f3ac3 100644 --- a/k8s/graphscope-store.Dockerfile +++ b/k8s/graphscope-store.Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_VERSION=v0.8.4 +ARG BASE_VERSION=v0.8.5 FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:$BASE_VERSION as builder ARG CI=false diff --git a/k8s/gsvineyard.Dockerfile b/k8s/gsvineyard.Dockerfile index ffc0ca18f36e..0886176fd0a4 100644 --- a/k8s/gsvineyard.Dockerfile +++ b/k8s/gsvineyard.Dockerfile @@ -27,7 +27,7 @@ RUN sudo mkdir -p /opt/vineyard && \ make -j`nproc` && \ make install && \ cd /tmp && \ - git clone -b v0.8.4 https://github.com/v6d-io/v6d.git --depth=1 && \ + git clone -b v0.8.5 https://github.com/v6d-io/v6d.git --depth=1 && \ cd v6d && \ git submodule update --init && \ mkdir -p /tmp/v6d/build && \ diff --git a/k8s/ubuntu/gsvineyard.Dockerfile b/k8s/ubuntu/gsvineyard.Dockerfile index 3523fbbd1d67..1c2df74c4029 100644 --- a/k8s/ubuntu/gsvineyard.Dockerfile +++ b/k8s/ubuntu/gsvineyard.Dockerfile @@ -14,7 +14,7 @@ RUN cd /tmp && \ make -j`nproc` && \ make install && \ cd /tmp && \ - git clone -b v0.8.4 https://github.com/v6d-io/v6d.git --depth=1 && \ + git clone -b v0.8.5 https://github.com/v6d-io/v6d.git --depth=1 && \ cd v6d && \ git submodule update --init && \ mkdir -p /tmp/v6d/build && \ diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index d6c6253d6201..718cb56d0290 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -14,8 +14,8 @@ readonly GREEN="\033[0;32m" readonly NC="\033[0m" # No Color readonly GRAPE_BRANCH="master" # libgrape-lite branch -readonly V6D_VERSION="0.8.4" # vineyard version -readonly V6D_BRANCH="v0.8.4" # vineyard branch +readonly V6D_VERSION="0.8.5" # vineyard version +readonly V6D_BRANCH="v0.8.5" # vineyard branch readonly OUTPUT_ENV_FILE="${HOME}/.graphscope_env" IS_IN_WSL=false && [[ ! -z "${IS_WSL}" || ! -z "${WSL_DISTRO_NAME}" ]] && IS_IN_WSL=true