Skip to content

chore: add integrator test CI #17

chore: add integrator test CI

chore: add integrator test CI #17

Workflow file for this run

name: Integrators
on: [push, pull_request]
concurrency:
# cancel older, in-progress jobs from the same PR, same workflow.
# use run_id if the job is triggered by a push to ensure
# push-triggered jobs to not get canceled.
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
era-compiler-tester:
runs-on: ubuntu-latest
steps:
- name: Get latest commit hash
run: |
echo "ERA_HASH=$( curl -u "u:${{ github.token }}" https://api.github.com/repos/matter-labs/era-compiler-tester/git/ref/heads/main | jq .object.sha | tr -d '"' )" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v1
- name: Rust setup
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-11-03
- name: Set up Python ${{ matrix.python-version[0] }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version[0] }}
- name: Get cache
id: cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
**/target
**/target-llvm
**/compiler_tester
**/llvm
**/era-compiler-tester
key: ${{ runner.os }}-${{ env.ERA_HASH }}
- name: Initialize repository and install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
git clone --depth 1 https://github.com/matter-labs/era-compiler-tester.git
cd era-compiler-tester
sed -i 's/ssh:\/\/git@/https:\/\//g' .gitmodules
git submodule init
git submodule update
sudo apt install cmake ninja-build clang-13 lld-13 parallel pkg-config lld
cargo install compiler-llvm-builder
zkevm-llvm clone && zkevm-llvm build
cargo build --release
- name: Save cache
uses: actions/cache/save@v3
if: always()
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
**/target
**/target-llvm
**/compiler_tester
**/llvm
**/era-compiler-tester
key: ${{ runner.os }}-${{ env.ERA_HASH }}
- name: Install Vyper
run: |
pip install .
mkdir era-compiler-tester/vyper-bin
echo $(which vyper)
cp $(which vyper) era-compiler-tester/vyper-bin/vyper-0.3.8
- name: Run tester
run: |
cd era-compiler-tester
cargo run --release --bin compiler-tester -- -v --path='tests/vyper/' --mode='M*B* 0.3.8'