Skip to content

Commit

Permalink
Fixes failures in nightly CI (#2201)
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <sighingnow@gmail.com>
  • Loading branch information
sighingnow committed Nov 4, 2022
1 parent 264cbc8 commit 7735451
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ jobs:
# run test
cd ${GITHUB_WORKSPACE}/python
python3 -m pytest -s ./graphscope/tests/kubernetes/test_demo_script.py -k test_demo_on_hdfs
python3 -m pytest -s -vvv ./graphscope/tests/kubernetes/test_demo_script.py -k test_demo_on_hdfs
# Check the result file have successfully written to the given location
# hdfs dfs -test -e /ldbc_sample/res.csv_0 && hdfs dfs -test -e /ldbc_sample/res.csv_1
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ifeq ($(UNAME),Linux)
SUFFIX := so
endif
ifeq ($(UNAME),Darwin)
NUMPROC := $(shell sysctl hw.ncpu | awk '{print $2}')
NUMPROC := $(shell sysctl -n hw.ncpu)
SUFFIX := dylib
endif

Expand Down
2 changes: 1 addition & 1 deletion k8s/graphscope-store.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN sudo chown -R $(id -u):$(id -g) /home/graphscope/gs /home/graphscope/.m2 &&
&& source ~/.cargo/env \
&& cd /home/graphscope/gs/interactive_engine \
&& mvn clean package -P groot,groot-assembly -DskipTests --quiet -Drust.compile.mode="$profile" \
&& mv /home/graphscope/gs/interactive_engine/assembly/target/groot.tar.gz /home/graphscope/gs/groot.tar.gz; \
&& mv /home/graphscope/gs/interactive_engine/assembly/target/groot.tar.gz /home/graphscope/gs/groot.tar.gz

FROM centos:7.9.2009

Expand Down
2 changes: 1 addition & 1 deletion scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ install_dependencies() {
-P /tmp/
sudo apt install -y -V /tmp/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt update -y
sudo apt install -y libarrow-dev libarrow-python-dev
sudo apt install -y libarrow-dev
# remove apache-arrow from packages_to_install
packages_to_install=("${packages_to_install[@]/apache-arrow}")
fi
Expand Down

0 comments on commit 7735451

Please sign in to comment.