Skip to content

Commit

Permalink
Try use vineyard:make to test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
acezen committed Apr 16, 2024
1 parent 662d014 commit 4c3bca7
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 10 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.21.5 --depth=1 https://github.com/v6d-io/v6d.git /tmp/v6d
git clone --single-branch -b main --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.21.5
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:main
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.21.5
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:main
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.21.5
python3 gsctl.py install-deps dev --v6d-version main
- name: Setup tmate session
if: false
Expand Down
6 changes: 5 additions & 1 deletion analytical_engine/core/grape_instance.cc
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,11 @@ bl::result<void> GrapeInstance::archiveGraph(const rpc::GSParams& params) {
bool exists = false;
VY_OK_OR_RAISE(client_->Exists(frag_group_id, exists));
if (exists) {
graph_utils->ArchiveGraph(frag_group_id, comm_spec_, *client_, params);
BOOST_LEAF_CHECK(graph_utils->ArchiveGraph(frag_group_id, comm_spec_, *client_, params));
} else {
RETURN_GS_ERROR(vineyard::ErrorCode::kInvalidValueError,
"Fragment group " + std::to_string(frag_group_id) +
" does not exist");
}
}
return {};
Expand Down
1 change: 0 additions & 1 deletion analytical_engine/frame/property_graph_frame.cc
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ LoadGraph(const grape::CommSpec& comm_spec, vineyard::Client& client,
BOOST_LEAF_CHECK(loader->Init(graph_info_path, selected_vertices,
selected_edges, true, false,
store_in_local));
MPI_Barrier(comm_spec.comm());
BOOST_LEAF_ASSIGN(frag_group_id, loader->LoadFragmentAsFragmentGroup());
#else
RETURN_GS_ERROR(vineyard::ErrorCode::kInvalidValueError,
Expand Down
1 change: 0 additions & 1 deletion docs/reference/session.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Session Functions
graphscope.get_default_session
graphscope.has_default_session
graphscope.set_option
graphscope.get_option
graphscope.g
graphscope.gremlin
graphscope.graphlearn
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.21.5
VINEYARD_VERSION ?= main
# 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.21.5
VINEYARD_VERSION ?= main
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.21.5
VINEYARD_VERSION ?= main
PROFILE ?= release
CI ?= false

Expand Down

0 comments on commit 4c3bca7

Please sign in to comment.