diff --git a/.github/workflows/build-graphscope-wheels-macos.yml b/.github/workflows/build-graphscope-wheels-macos.yml index 20afc7cc1c9d..05f218b64739 100644 --- a/.github/workflows/build-graphscope-wheels-macos.yml +++ b/.github/workflows/build-graphscope-wheels-macos.yml @@ -185,7 +185,7 @@ jobs: run: | . ~/.graphscope_env python3 -m pip install libclang - git clone --single-branch -b v0.20.2 --depth=1 https://github.com/v6d-io/v6d.git /tmp/v6d + git clone --single-branch -b v0.20.3 --depth=1 https://github.com/v6d-io/v6d.git /tmp/v6d cd /tmp/v6d git submodule update --init cmake . -DCMAKE_INSTALL_PREFIX=/usr/local \ diff --git a/.github/workflows/gae.yml b/.github/workflows/gae.yml index d3f8ed8b1169..7fc093bce577 100644 --- a/.github/workflows/gae.yml +++ b/.github/workflows/gae.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-20.04 if: ${{ github.repository == 'alibaba/GraphScope' }} container: - image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.20.2 + image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.20.3 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/networkx-forward-algo-nightly.yml b/.github/workflows/networkx-forward-algo-nightly.yml index 13cd540bdce4..2ad78324239c 100644 --- a/.github/workflows/networkx-forward-algo-nightly.yml +++ b/.github/workflows/networkx-forward-algo-nightly.yml @@ -17,7 +17,7 @@ jobs: run: shell: bash --noprofile --norc -eo pipefail {0} container: - image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.20.2 + image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.20.3 options: --shm-size 4096m diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index de0d4d4173b8..3cd0671b87c5 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -44,7 +44,7 @@ jobs: sudo mkdir /opt/graphscope sudo chown -R $(id -u):$(id -g) /opt/graphscope python3 -m pip install click - python3 gsctl.py install-deps dev --v6d-version v0.20.2 + python3 gsctl.py install-deps dev --v6d-version v0.20.3 - name: Setup tmate session if: false diff --git a/k8s/Makefile b/k8s/Makefile index 2313aa1e1cc1..158820af0e4d 100644 --- a/k8s/Makefile +++ b/k8s/Makefile @@ -10,7 +10,7 @@ endif ARCH := $(shell uname -m) VERSION ?= latest -VINEYARD_VERSION ?= v0.20.2 +VINEYARD_VERSION ?= v0.20.3 # This is the version of builder base image in most cases, except for graphscope-dev BUILDER_VERSION ?= $(VINEYARD_VERSION) # This is the version of runtime base image diff --git a/k8s/actions-runner-controller/manylinux/Makefile b/k8s/actions-runner-controller/manylinux/Makefile index 3bf03ab1baf8..8e2ca5750b66 100644 --- a/k8s/actions-runner-controller/manylinux/Makefile +++ b/k8s/actions-runner-controller/manylinux/Makefile @@ -12,7 +12,7 @@ TARGETPLATFORM ?= $(shell arch) RUNNER_VERSION ?= 2.287.1 DOCKER_VERSION ?= 20.10.12 -VINEYARD_VERSION ?= v0.20.2 +VINEYARD_VERSION ?= v0.20.3 BUILDER_VERSION ?= $(VINEYARD_VERSION) # default list of platforms for which multiarch image is built diff --git a/k8s/internal/Makefile b/k8s/internal/Makefile index 239895493e12..4537d2799ed9 100644 --- a/k8s/internal/Makefile +++ b/k8s/internal/Makefile @@ -42,7 +42,7 @@ GRAPHSCOPE_HOME ?= /usr/local INSTALL_PREFIX ?= /opt/graphscope VERSION ?= latest -VINEYARD_VERSION ?= v0.20.2 +VINEYARD_VERSION ?= v0.20.3 PROFILE ?= release CI ?= false diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index a2bd1b82222d..33ed84dd1e66 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.20.2" # vineyard version -readonly V6D_BRANCH="v0.20.2" # vineyard branch +readonly V6D_VERSION="0.20.3" # vineyard version +readonly V6D_BRANCH="v0.20.3" # vineyard branch readonly OUTPUT_ENV_FILE="${HOME}/.graphscope_env" IS_IN_WSL=false && [[ ! -z "${IS_WSL}" || ! -z "${WSL_DISTRO_NAME}" ]] && IS_IN_WSL=true