feat: EVM dependencies #75
Workflow file for this run
This file contains hidden or 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: Tests | |
| # Execute workflow for each PR and with each merge to the trunk | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| # Cancel the workflow if any new changes pushed to a feature branch or the trunk | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Check for cargo issues | |
| cargo-checks: | |
| runs-on: [ci-runner-compiler, Linux] | |
| container: | |
| image: ghcr.io/matter-labs/zksync-llvm-runner:latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Build LLVM | |
| uses: matter-labs/era-compiler-ci/.github/actions/build-llvm@v1 | |
| with: | |
| clone-llvm: 'false' | |
| target-env: 'gnu' | |
| build-type: 'Release' | |
| enable-assertions: 'false' | |
| ccache-key: ${{ format('llvm-{0}-{1}', runner.os, runner.arch) }} | |
| save-ccache: 'false' | |
| - name: Cargo checks | |
| uses: matter-labs/era-compiler-ci/.github/actions/cargo-check@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| # Build and run regression tests | |
| build-and-test: | |
| strategy: | |
| fail-fast: false # finalize testing of all targets even if one failed | |
| matrix: | |
| include: | |
| - name: "MacOS x86" | |
| runner: macos-13-large | |
| - name: "MacOS arm64" | |
| runner: [self-hosted, macOS, ARM64] | |
| - name: "Linux x86 gnu" | |
| runner: [ci-runner-compiler, Linux] | |
| image: ghcr.io/matter-labs/zksync-llvm-runner:latest | |
| target: "x86_64-unknown-linux-gnu" | |
| enable-coverage: 'true' # enable coverage on Linux GNU | |
| - name: "Linux ARM64 gnu" | |
| runner: matterlabs-ci-runner-arm | |
| image: ghcr.io/matter-labs/zksync-llvm-runner:latest | |
| target: "aarch64-unknown-linux-gnu" | |
| - name: "Windows" | |
| runner: windows-2022-github-hosted-16core | |
| target: "x86_64-pc-windows-gnu" | |
| runs-on: ${{ matrix.runner }} | |
| container: | |
| image: ${{ matrix.image || '' }} # Special workaround to allow matrix builds with optional container | |
| name: ${{ matrix.name }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Prepare Windows env | |
| if: runner.os == 'Windows' | |
| uses: matter-labs/era-compiler-ci/.github/actions/prepare-msys@v1 | |
| - name: Building solc | |
| uses: matter-labs/era-compiler-ci/.github/actions/build-solc@v1 | |
| with: | |
| cmake-build-type: RelWithDebInfo | |
| working-dir: 'era-solidity' | |
| - name: Build LLVM | |
| uses: matter-labs/era-compiler-ci/.github/actions/build-llvm@v1 | |
| with: | |
| clone-llvm: 'false' | |
| build-type: RelWithDebInfo | |
| enable-assertions: 'true' | |
| ccache-key: ${{ format('llvm-{0}-{1}', runner.os, runner.arch) }} | |
| - name: Run tests | |
| uses: matter-labs/era-compiler-ci/.github/actions/rust-unit-tests@v1 | |
| env: | |
| BOOST_PREFIX: ${{ github.workspace }}/era-solidity/boost/lib | |
| SOLC_PREFIX: ${{ github.workspace }}/era-solidity/build | |
| with: | |
| target: ${{ matrix.target || '' }} | |
| enable-coverage: ${{ matrix.enable-coverage || 'false' }} | |
| # Special job that allows some of the jobs to be skipped or failed | |
| # requiring others to be successful | |
| pr-checks: | |
| runs-on: ubuntu-latest | |
| if: always() | |
| needs: | |
| - cargo-checks | |
| - build-and-test | |
| steps: | |
| - name: Decide on PR checks | |
| uses: re-actors/alls-green@release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |