Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Aug 30, 2024
1 parent 26f5d0a commit 5e02d97
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gae.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: GraphScope GAE CI

on:
mn:
workflow_dispatch:
push:
branches:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
--cov-report=term --exitfirst -s -v graphscope/tests/unittest/test_java_app.py
- name: Setup tmate session
if: always()
if: false
uses: mxschmitt/action-tmate@v3

- name: Upload Coverage
Expand Down
10 changes: 7 additions & 3 deletions python/graphscope/gsctl/scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ while (( "$#" )); do
case "$1" in
dev)
for_analytical=true
for_analytical_java=true
for_interactive=true
for_learning=true
shift
Expand Down Expand Up @@ -176,9 +177,9 @@ fi

# install functions
init_workspace_and_env() {
info "creating directory: ${install_prefix} ${MPI_PREFIX} ${tempdir} ${V6D_PREFIX}"
${SUDO} mkdir -p ${install_prefix} ${MPI_PREFIX} ${tempdir} ${V6D_PREFIX}
${SUDO} chown -R $(id -u):$(id -g) ${install_prefix} ${MPI_PREFIX} ${tempdir} ${V6D_PREFIX}
info "creating directory: ${install_prefix} ${tempdir} ${V6D_PREFIX}"
${SUDO} mkdir -p ${install_prefix} ${tempdir} ${V6D_PREFIX}
${SUDO} chown -R $(id -u):$(id -g) ${install_prefix} ${tempdir} ${V6D_PREFIX}
export PATH=${install_prefix}/bin:${PATH}
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${install_prefix}/lib:${install_prefix}/lib64
}
Expand Down Expand Up @@ -406,6 +407,9 @@ install_openmpi() {
if [[ -f "${install_prefix}/include/mpi.h" ]]; then
return 0
fi
info "creating directory: ${MPI_PREFIX}"
${SUDO} mkdir -p ${MPI_PREFIX}
${SUDO} chown -R $(id -u):$(id -g) ${MPI_PREFIX}
pushd "${tempdir}" || exit
directory="openmpi-4.0.5"
file="openmpi-4.0.5.tar.gz"
Expand Down

0 comments on commit 5e02d97

Please sign in to comment.