-
Notifications
You must be signed in to change notification settings - Fork 521
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix TinkerPop unit test (#2055)
* chore: don't support persistence for memory backend * chore: setup graph by first step graph when graph is null * chore: apply relations optimize logic * chore: don't support null properties * fix: g.V().has(empty).count() and g.V().count().as('a').select('a') * fix: specify the code generation directory for raft.proto (#2057) * fix: tinkerpop unit schema no define * fix the style & clean some outdated code Co-authored-by: Simon Cheung <[email protected]> Co-authored-by: imbajin <[email protected]>
- Loading branch information
1 parent
fc27f2c
commit 6c3170c
Showing
13 changed files
with
174 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ jobs: | |
distribution: 'zulu' | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
|
@@ -68,18 +68,6 @@ jobs: | |
java-version: ${{ matrix.JAVA_VERSION }} | ||
distribution: 'zulu' | ||
|
||
# - name: Init MySQL Env | ||
# if: ${{ env.BACKEND == 'mysql' }} | ||
# uses: mirromutth/[email protected] | ||
# with: | ||
# host port: 3306 # Optional, default value is 3306. The port of host | ||
# container port: 3306 # Optional, default value is 3306. The port of container | ||
# character set server: 'utf8mb4' # Optional, default value is 'utf8mb4'. The '--character-set-server' option for mysqld | ||
# collation server: 'utf8mb4_general_ci' # Optional, default value is 'utf8mb4_general_ci'. The '--collation-server' option for mysqld | ||
# mysql version: '5.7' # Optional, default value is "latest". The version of the MySQL | ||
# mysql database: 'test' # Optional, default value is "test". The specified database which will be create | ||
# mysql root password: "******" # Required if "mysql user" is empty, default is empty. The root superuser password | ||
|
||
- name: Run unit test | ||
run: | | ||
$TRAVIS_DIR/run-unit-test.sh $BACKEND | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.