Skip to content

Commit

Permalink
Merge pull request #694 from ywy2090/master-ChangeLog
Browse files Browse the repository at this point in the history
update netty-sm-ssl-context
  • Loading branch information
ywy2090 authored Aug 14, 2020
2 parents 3e86746 + 15064af commit c611580
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 4 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Java-SDK GitHub Actions
on:
push:
pull_request:
release:
types: [published, created, edited]
env:
CCACHE_DIR: ${{ github.workspace }}/ccache

jobs:
build:
name: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-16.04, macos-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
- name: check commit
if: ${{ runner.os == 'Linux' && github.base_ref != 'master' && github.event_name == 'pull_request' }}
run: bash .ci/ci_check_commit.sh
- name: install macOS dependencies
if: runner.os == 'macOS'
run: brew install [email protected] openjdk
- name: install Ubuntu dependencies
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt install -y git curl libssl-dev default-jdk build-essential
- name: compile and run ut
run: ./gradlew build -x integrationTest
- name: run integration testing
run: /bin/bash .ci/ci_check.sh
5 changes: 1 addition & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,10 @@ dependencies {
// compile 'io.netty:netty-tcnative:2.0.25.Final'
// compile 'io.netty:netty-tcnative-boringssl-static:2.0.27.Final'
// compile 'org.fisco-bcos:netty-sm-ssl-context:1.0.0-SNAPSHOT'
compile ('org.fisco-bcos:netty-sm-ssl-context:1.0.0') {
compile ('org.fisco-bcos:netty-sm-ssl-context:1.1.0') {
exclude module:"log4j"
}

// update tcnative version
compile 'org.fisco-bcos:tcnative:2.0.30.0-SNAPSHOT'

compile 'org.ethereum:solcJ-all:0.4.25'
compile 'io.netty:netty-all:4.1.50.Final'
compile 'com.google.guava:guava:29.0-jre'
Expand Down

0 comments on commit c611580

Please sign in to comment.