File tree 2 files changed +34
-4
lines changed
2 files changed +34
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Java-SDK GitHub Actions
2
+ on :
3
+ push :
4
+ pull_request :
5
+ release :
6
+ types : [published, created, edited]
7
+ env :
8
+ CCACHE_DIR : ${{ github.workspace }}/ccache
9
+
10
+ jobs :
11
+ build :
12
+ name : build
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ matrix :
16
+ os : [ubuntu-18.04, ubuntu-16.04, macos-latest]
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ with :
20
+ fetch-depth : 5
21
+ - name : check commit
22
+ if : ${{ runner.os == 'Linux' && github.base_ref != 'master' && github.event_name == 'pull_request' }}
23
+ run : bash .ci/ci_check_commit.sh
24
+ - name : install macOS dependencies
25
+ if : runner.os == 'macOS'
26
+ run :
brew install [email protected] openjdk
27
+ - name : install Ubuntu dependencies
28
+ if : runner.os == 'Linux'
29
+ run : sudo apt-get update && sudo apt install -y git curl libssl-dev default-jdk build-essential
30
+ - name : compile and run ut
31
+ run : ./gradlew build -x integrationTest
32
+ - name : run integration testing
33
+ run : /bin/bash .ci/ci_check.sh
Original file line number Diff line number Diff line change @@ -69,13 +69,10 @@ dependencies {
69
69
// compile 'io.netty:netty-tcnative:2.0.25.Final'
70
70
// compile 'io.netty:netty-tcnative-boringssl-static:2.0.27.Final'
71
71
// compile 'org.fisco-bcos:netty-sm-ssl-context:1.0.0-SNAPSHOT'
72
- compile (' org.fisco-bcos:netty-sm-ssl-context:1.0 .0' ) {
72
+ compile (' org.fisco-bcos:netty-sm-ssl-context:1.1 .0' ) {
73
73
exclude module :" log4j"
74
74
}
75
75
76
- // update tcnative version
77
- compile ' org.fisco-bcos:tcnative:2.0.30.0-SNAPSHOT'
78
-
79
76
compile ' org.ethereum:solcJ-all:0.4.25'
80
77
compile ' io.netty:netty-all:4.1.50.Final'
81
78
compile ' com.google.guava:guava:29.0-jre'
You can’t perform that action at this time.
0 commit comments