Skip to content

Commit

Permalink
fix(k8s): Bump up vineyard to v0.20.3 (#3532)
Browse files Browse the repository at this point in the history
## What do these changes do?

The PR is to fix the bug caused by the version mismatch of vineyard in
the graphscope-dev image.
See:  https://github.com/alibaba/GraphScope/actions/runs/7771225038/job/21192444777

Also, the dev image is updated. https://github.com/alibaba/GraphScope/actions/runs/7773830300

Signed-off-by: Ye Cao <[email protected]>
  • Loading branch information
dashanji authored Feb 5, 2024
1 parent 623fbf0 commit ebcf431
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-graphscope-wheels-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/networkx-forward-algo-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/actions-runner-controller/manylinux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/internal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ebcf431

Please sign in to comment.