fix:handle different solc compile result raw json for abi bin and doc… #113
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
name: SolcJ GitHub Actions | |
on: | |
push: | |
pull_request: | |
env: | |
CCACHE_DIR: ${{ github.workspace }}/ccache | |
jobs: | |
build: | |
name: build | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04, windows-2019, macos-12] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 5 | |
- name: install Ubuntu dependencies | |
if: runner.os == 'Linux' | |
run: sudo apt update && sudo apt install -y git curl libssl-dev default-jdk build-essential | |
- name: install macOS dependencies | |
if: runner.os == 'macOS' | |
run: brew install [email protected] openjdk | |
- name: run build test | |
if: runner.os == 'Windows' | |
run: ./gradlew.bat build | |
- name: run integration testing | |
if: runner.os != 'Windows' | |
run: /bin/bash .ci/ci_check.sh | |
build-centos: | |
name: build-centos | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
container: docker.io/centos:7 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 5 | |
- name: install CentOS dependencies | |
run: yum install -y epel-release centos-release-scl which git openssl-devel openssl java java-devel | |
- name: run integration testing | |
run: /bin/bash .ci/ci_check.sh |