-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* <feat>(rpc): add call with sign interface of rpc. (#771) * <feat>(rpc): add call with sign interface of rpc. * <test>(integration): add v3.3.0 node test. * <fix>(CI): fix integration test of extra data and input. (#796) * <fix>(codec): fix int type not count bit size bug. (#800) * upgrade openjdk version * <fix>(test): remove unnecessary dependency com.google.guava. (#811) * Add tars sdk impl (#818) Add tars sdk impl (#818) * <feat&fix>(transaction): fix call with sign result not handle revert message bug, add system features. (#819) * Update tars client impl (#821) * Add TarsClient * Update bulid.gradle, add tars-sdk * Update fisco-bcos-tars-sdk package name * Using google code style * Merge origin * Revert changes of xml * ExtraData use string type * Update tars client * Add tars config and impl * Update loadLibrary * Use google java format * Update library path find * Update tars client --------- Co-authored-by: More <More@MSI> Co-authored-by: More <[email protected]> * <feat>(client): add getNodeListByType interface. (#822) * Fix tars bug (#823) * Add TarsClient * Update bulid.gradle, add tars-sdk * Update fisco-bcos-tars-sdk package name * <fix>(client): add default nodeName to send request. (#825) * Support jni inside jar (#826) * Update sdk usage * Support jni inside jar --------- Co-authored-by: wenlinli <[email protected]> Co-authored-by: MO NAN <[email protected]> Co-authored-by: More <More@MSI> Co-authored-by: More <[email protected]>
- Loading branch information
1 parent
adf1633
commit 289fda7
Showing
21 changed files
with
704 additions
and
125 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
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 |
---|---|---|
|
@@ -41,16 +41,17 @@ jobs: | |
if: runner.os == 'macOS' | ||
run: | | ||
brew install [email protected] ccache | ||
- name: Set up JDK 1.8 | ||
- name: Set up JDK 1.8.0.345 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8.0.345' | ||
distribution: 'zulu' | ||
java-version: '8.0.345' | ||
- name: run build test | ||
if: runner.os == 'Windows' | ||
run: ./gradlew.bat build | ||
- name: run integration testing | ||
if: runner.os != 'Windows' | ||
# FIXME: macOS WASM integration testing failed | ||
if: runner.os != 'Windows' && runner.os != 'macOS' | ||
run: /bin/bash .ci/ci_check.sh | ||
|
||
build-centos: | ||
|
@@ -87,6 +88,11 @@ jobs: | |
java-version: '8.0.345' | ||
- name: install CentOS dependencies | ||
run: yum install -y epel-release centos-release-scl wget which git openssl-devel openssl tree | ||
- name: Set up JDK 1.8.0.345 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8.0.345' | ||
- name: run build test | ||
run: /bin/bash gradlew build --info | ||
- name: run integration testing | ||
|
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.