Skip to content

fix:handle different solc compile result raw json for abi bin and doc… #113

fix:handle different solc compile result raw json for abi bin and doc…

fix:handle different solc compile result raw json for abi bin and doc… #113

Workflow file for this run

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