Skip to content

Commit

Permalink
Bump up vineyard to v0.14.5 (#2676)
Browse files Browse the repository at this point in the history
Also fixes CI
  • Loading branch information
siyuan0322 committed May 9, 2023
1 parent ff5809e commit b258999
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-graphscope-wheels-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,14 @@ jobs:
cd ${GITHUB_WORKSPACE}/k8s/internal
# build graphscope wheels
sudo -E -u runner make graphscope-py3-package GRAPHSCOPE_HOME=/opt/graphscope INSTALL_PREFIX=${GITHUB_WORKSPACE}/install
sudo -E -u runner make graphscope-py3-package GRAPHSCOPE_HOME=/opt/graphscope
# build client wheels
sudo -E -u runner make graphscope-client-py3-package GRAPHSCOPE_HOME=/opt/graphscope
# package
cd ${GITHUB_WORKSPACE}
sudo chown $(id -u) -R .
tar -zcf client.tar.gz python/dist/wheelhouse/*.whl
tar -zcf graphscope.tar.gz coordinator/dist/
Expand Down
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 @@ -160,7 +160,7 @@ jobs:
run: |
. ~/.graphscope_env
python3 -m pip install libclang
git clone --single-branch -b v0.14.0 --depth=1 https://github.com/v6d-io/v6d.git /tmp/v6d
git clone --single-branch -b v0.14.5 --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 @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-20.04
if: ${{ github.repository == 'alibaba/GraphScope' }}
container:
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.14.0
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.14.5
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.14.0
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.14.5
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 @@ -43,7 +43,7 @@ jobs:
fi
sudo mkdir /opt/graphscope
sudo chown -R $(id -u):$(id -g) /opt/graphscope
./gs install-deps dev --v6d-version v0.14.0
./gs install-deps dev --v6d-version v0.14.5
- name: Setup tmate session
if: false
Expand Down
2 changes: 1 addition & 1 deletion analytical_engine/java/grape-runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ find_package(libgrapelite REQUIRED)
include_directories(SYSTEM ${LIBGRAPELITE_INCLUDE_DIRS})

# find vineyard ---------------------------------------------
find_package(vineyard 0.14.0 REQUIRED)
find_package(vineyard 0.14.5 REQUIRED)
include_directories(${VINEYARD_INCLUDE_DIRS})

add_library(grape-jni SHARED ${SOURCES})
Expand Down
1 change: 0 additions & 1 deletion coordinator/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ prometheus-client>=0.14.1
setuptools==65.7.0
packaging
tqdm
urllib3>=1.24.2,<2.0.0
2 changes: 1 addition & 1 deletion k8s/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ifeq ($(REGISTRY),)
endif

VERSION ?= latest
VINEYARD_VERSION ?= v0.14.0
VINEYARD_VERSION ?= v0.14.5
# 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.14.0
VINEYARD_VERSION ?= v0.14.5
BUILDER_VERSION ?= $(VINEYARD_VERSION)

# default list of platforms for which multiarch image is built
Expand Down
3 changes: 1 addition & 2 deletions k8s/internal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ GRAPHSCOPE_HOME ?= /usr/local
INSTALL_PREFIX ?= /opt/graphscope

VERSION ?= latest
VINEYARD_VERSION ?= v0.14.0
VINEYARD_VERSION ?= v0.14.5
PROFILE ?= release
CI ?= false

Expand Down Expand Up @@ -100,7 +100,6 @@ graphscope-manylinux2014-py3-nodocker:
for _ in {1..5}; do if make INSTALL_PREFIX=${INSTALL_PREFIX}; then break; fi; done && \
for _ in {1..5}; do if $(MAKE_INSTALL_COMMAND); then break; fi; done && \
if [ ${INSTALL_PREFIX} != ${GRAPHSCOPE_HOME} ]; then sudo cp -rsn ${INSTALL_PREFIX}/* ${GRAPHSCOPE_HOME}/; fi && \
sed -i -i '199i\ vineyardctl_path = None' "/home/graphscope/.local/lib/python3.8/site-packages/vineyard/deploy/utils.py" && \
python3 $(WORKING_DIR)/../utils/precompile.py --graph --app && \
export WITH_EXTRA_DATA=ON && \
export GRAPHSCOPE_HOME=${GRAPHSCOPE_HOME} && \
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.14.0" # vineyard version
readonly V6D_BRANCH="v0.14.0" # vineyard branch
readonly V6D_VERSION="0.14.5" # vineyard version
readonly V6D_BRANCH="v0.14.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

0 comments on commit b258999

Please sign in to comment.