Skip to content

Commit

Permalink
Upgrade vineyard to v0.2.2. (#366)
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <linzhu.ht@alibaba-inc.com>
  • Loading branch information
sighingnow committed Jun 2, 2021
1 parent 0525b0e commit 0b7e314
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run:
shell: scl enable devtoolset-7 -- bash --noprofile --norc -eo pipefail {0}
container:
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.2.1
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.2.2
options:
--shm-size 4096m
strategy:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
defaults:
run:
shell: scl enable devtoolset-7 -- bash --noprofile --norc -eo pipefail {0}
container: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.2.1
container: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.2.2
steps:
- name: Install Dependencies
run: |
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
defaults:
run:
shell: scl enable devtoolset-7 -- bash --noprofile --norc -eo pipefail {0}
container: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.2.1
container: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.2.2
steps:
- name: Install Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Install libvineyard
run: |
git clone -b v0.2.1 --single-branch --depth=1 https://github.com/alibaba/libvineyard.git
git clone -b v0.2.2 --single-branch --depth=1 https://github.com/alibaba/libvineyard.git
cd libvineyard
git submodule update --init
mkdir build && pushd build
Expand Down
2 changes: 1 addition & 1 deletion analytical_engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ endif ()
find_package(libgrapelite REQUIRED)
include_directories(${LIBGRAPELITE_INCLUDE_DIRS})

find_package(vineyard 0.2.1 REQUIRED)
find_package(vineyard 0.2.2 REQUIRED)
include_directories(${VINEYARD_INCLUDE_DIRS})
add_compile_options(-DENABLE_SELECTOR)

Expand Down
2 changes: 1 addition & 1 deletion coordinator/gscoordinator/template/CMakeLists.template
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ set(CMAKE_THREAD_PREFER_PTHREAD ON)
find_package(Threads REQUIRED)

# find vineyard-----------------------------------------------------------------
find_package(vineyard 0.2.1 REQUIRED)
find_package(vineyard 0.2.2 REQUIRED)
include_directories(${VINEYARD_INCLUDE_DIRS})
add_compile_options(-DENABLE_SELECTOR)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ find_package(Threads REQUIRED)
# we need edge src/dst ids in etable.
add_definitions(-DENDPOINT_LISTS)

find_package(vineyard 0.2.1 REQUIRED)
find_package(vineyard 0.2.2 REQUIRED)
add_library(native_store global_store_ffi.cc
htap_ds_impl.cc
graph_builder_ffi.cc
Expand Down
2 changes: 1 addition & 1 deletion k8s/graphscope.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.2.1
ARG BASE_VERSION=v0.2.2
FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:$BASE_VERSION as builder

ARG CI=true
Expand Down
2 changes: 1 addition & 1 deletion k8s/graphstore.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_VERSION=v0.2.1
ARG BASE_VERSION=v0.2.2
FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:$BASE_VERSION as builder

ARG CI=true
Expand Down
2 changes: 1 addition & 1 deletion k8s/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.2.1 https://github.com/alibaba/libvineyard.git --depth=1 && \
git clone -b v0.2.2 https://github.com/alibaba/libvineyard.git --depth=1 && \
cd libvineyard && \
git submodule update --init && \
mkdir -p /tmp/libvineyard/build && \
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function install_libgrape-lite() {

function install_vineyard() {
echo "$(date '+%Y-%m-%d %H:%M:%S') build and install vineyard"
git clone -b v0.2.1 --single-branch --depth=1 https://github.com/alibaba/libvineyard.git /tmp/libvineyard
git clone -b v0.2.2 --single-branch --depth=1 https://github.com/alibaba/libvineyard.git /tmp/libvineyard
pushd /tmp/libvineyard
git submodule update --init
mkdir build && pushd build
Expand Down

0 comments on commit 0b7e314

Please sign in to comment.