Introduce CI for EVM compiler #5
Workflow file for this run
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: EVM compiler testing | |
on: | |
pull_request: | |
branches: [ evm-compiler ] | |
jobs: | |
common_tests: | |
runs-on: [self-hosted, tests-runner] | |
name: Common tests | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
token: ${{ secrets.SUBMODULE_CHECKOUT_SECRET || github.token }} | |
- name: Set up cmake 3.22 | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '3.22.x' | |
- name: Setup Ninja | |
uses: ashutoshvarma/setup-ninja@master | |
- name: Run regression EVM tests | |
run: | | |
bash llvm/projects/evm-tests/run_evm_tests.sh | |
# - name: Run LLVM codegen tests | |
# run: | | |
# ./bin/llvm-lit llvm/test/CodeGen/EVM/*.ll |