Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump vineyard to 0.8.5 #2047

Merged
merged 3 commits into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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 @@ -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

Expand Down
2 changes: 1 addition & 1 deletion analytical_engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion k8s/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ else
endif

VERSION ?= latest
VINEYARD_VERSION ?= v0.8.4
VINEYARD_VERSION ?= v0.8.5
PROFILE ?= release
CI ?= false

Expand Down
2 changes: 1 addition & 1 deletion k8s/actions-runner-controller/manylinux/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/graphscope-dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/graphscope-store.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/gsvineyard.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion k8s/ubuntu/gsvineyard.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
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.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
Expand Down