forked from hugegraph/hugegraph-sync
chore: disable raft test in normal PR due to timeout problem (#2349)
And replace it in pd/store module
This commit is contained in:
parent
12b4940563
commit
c0ea21eed6
|
|
@ -20,11 +20,12 @@ jobs:
|
|||
BASE_BRANCH_NAME: ${{ github.base_ref }}
|
||||
TARGET_BRANCH_NAME: ${{ github.base_ref != '' && github.base_ref || github.ref_name }}
|
||||
RELEASE_BRANCH: ${{ startsWith(github.ref_name, 'release-') || startsWith(github.ref_name, 'test-') }}
|
||||
RAFT_MODE: ${{ startsWith(github.head_ref, 'test') || startsWith(github.head_ref, 'raft') }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
BACKEND: [ memory, cassandra, scylladb, hbase, rocksdb, mysql, postgresql ]
|
||||
BACKEND: [ memory, rocksdb, hbase, cassandra, mysql, postgresql, scylladb ]
|
||||
JAVA_VERSION: [ '8', '11' ]
|
||||
|
||||
steps:
|
||||
|
|
@ -77,8 +78,9 @@ jobs:
|
|||
run: |
|
||||
$TRAVIS_DIR/run-api-test.sh $BACKEND $REPORT_DIR
|
||||
|
||||
# TODO: disable raft test in normal PR due to the always timeout problem
|
||||
- name: Run raft test
|
||||
if: ${{ env.BACKEND == 'rocksdb' }}
|
||||
if: ${{ env.RAFT_MODE == 'true' && env.BACKEND == 'rocksdb' }}
|
||||
run: |
|
||||
$TRAVIS_DIR/run-api-test-for-raft.sh $BACKEND $REPORT_DIR
|
||||
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
export LANG=zh_CN.UTF-8
|
||||
set -e
|
||||
|
||||
HOME_PATH=`dirname $0`
|
||||
HOME_PATH=`cd ${HOME_PATH}/.. && pwd`
|
||||
cd ${HOME_PATH}
|
||||
HOME_PATH=$(dirname "$0")
|
||||
HOME_PATH=$(cd "${HOME_PATH}"/.. && pwd)
|
||||
cd "${HOME_PATH}"
|
||||
|
||||
BIN_PATH=${HOME_PATH}/bin
|
||||
CONF_PATH=${HOME_PATH}/conf
|
||||
|
|
@ -98,7 +98,7 @@ function remove_peer() {
|
|||
}
|
||||
|
||||
if [ "${HUGEGRAPH_URL}" = "" ]; then
|
||||
HUGEGRAPH_URL=`read_property ${CONF_PATH}/rest-server.properties restserver.url`
|
||||
HUGEGRAPH_URL=$(read_property ${CONF_PATH}/rest-server.properties restserver.url)
|
||||
fi
|
||||
|
||||
if [ "${HUGEGRAPH_GRAPH}" = "" ]; then
|
||||
|
|
|
|||
|
|
@ -21,8 +21,8 @@ BACKEND=$1
|
|||
REPORT_DIR=$2
|
||||
REPORT_FILE=$REPORT_DIR/jacoco-api-test.xml
|
||||
|
||||
TRAVIS_DIR=`dirname $0`
|
||||
VERSION=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
|
||||
TRAVIS_DIR=$(dirname $0)
|
||||
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
|
||||
SERVER_DIR=hugegraph-server/apache-hugegraph-incubating-$VERSION
|
||||
RAFT1_DIR=hugegraph-raft1
|
||||
RAFT2_DIR=hugegraph-raft2
|
||||
|
|
|
|||
Loading…
Reference in New Issue