-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
40 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,9 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
BACKEND: [memory, cassandra, scylladb, hbase, rocksdb] | ||
BACKEND: [memory, cassandra, scylladb, hbase, rocksdb, mysql, postgresql] | ||
JAVA_VERSION: ['8'] | ||
|
||
steps: | ||
- name: Install JDK ${{ matrix.JAVA_VERSION }} | ||
uses: actions/setup-java@v2 | ||
|
@@ -49,6 +50,19 @@ jobs: | |
run: | | ||
$TRAVIS_DIR/install-backend.sh ${{ matrix.BACKEND }} | ||
- name: Init Mysql Env | ||
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 | ||
#mysql user: 'root' # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too | ||
#mysql password: ${{ secrets.DatabasePassword }} # Required if "mysql user" exists. The password for the "mysql user" | ||
|
||
- name: Run test | ||
run: | | ||
mvn test -P core-test,${{ matrix.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
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