Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
VGalaxies committed Dec 25, 2024
1 parent 1b0677f commit 8104fc2
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commons-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
cp $HOME/.m2/settings.xml /tmp/settings.xml
cp -vf .github/configs/settings.xml $HOME/.m2/settings.xml && cat $HOME/.m2/settings.xml
- name: Compile
- name: Install
run: |
mvn compile -Dmaven.javadoc.skip=true -ntp
mvn install -Dmaven.javadoc.skip=true -ntp -Dmaven.test.skip=true
- name: Run common test
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/pd-store-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
runs-on: ubuntu-latest
env:
# TODO: avoid duplicated env setup in pd & store
# TODO: reset use stage to false later
USE_STAGE: 'false' # Whether to include the stage repository.
# TODO: remove outdated env
TRAVIS_DIR: hugegraph-server/hugegraph-dist/src/assembly/travis
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
# TODO: we need test & replace it to ubuntu-24.04 or ubuntu-latest
runs-on: ubuntu-20.04
env:
# TODO: reset use stage to false later
USE_STAGE: 'false' # Whether to include the stage repository.
TRAVIS_DIR: hugegraph-server/hugegraph-dist/src/assembly/travis
REPORT_DIR: target/site/jacoco
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@ public final class ApiVersion {

public static void check() {
// Check the version of hugegraph-core. Do first check from version 0.3
VersionUtil.check(CoreVersion.VERSION, "1.0", "1.6", CoreVersion.NAME);
VersionUtil.check(CoreVersion.VERSION, "1.0", "1.7", CoreVersion.NAME);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
set -ev

HOME_DIR=$(pwd)
PD_DIR=$HOME_DIR/hugegraph-pd/apache-hugegraph-pd-incubating-1.5.0
PD_DIR=$HOME_DIR/hugegraph-pd/apache-hugegraph-pd-incubating-1.6.0

pushd $PD_DIR
. bin/start-hugegraph-pd.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
set -ev

HOME_DIR=$(pwd)
STORE_DIR=$HOME_DIR/hugegraph-store/apache-hugegraph-store-incubating-1.5.0
STORE_DIR=$HOME_DIR/hugegraph-store/apache-hugegraph-store-incubating-1.6.0

pushd $STORE_DIR
. bin/start-hugegraph-store.sh
Expand Down

0 comments on commit 8104fc2

Please sign in to comment.