Skip to content

Commit

Permalink
simplify steps
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed May 11, 2023
1 parent 2265958 commit 36ce65e
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/integrators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,32 +33,24 @@ jobs:
- name: Initialize repository and submodules
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
cd ..
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
sudo apt install cmake ninja-build clang-13 lld-13 parallel pkg-config lld
cd era-compiler-tester
cargo install compiler-llvm-builder
zkevm-llvm clone && zkevm-llvm build
cargo build --release
cd ..
- name: Copy Vyper binary
run: |
cd era-compiler-tester
mkdir vyper-bin
echo $(which vyper)
cp $(which vyper) vyper-bin/vyper-0.3.8
cd ..
- name: Run tester with optimization for Vyper
- name: Run tester
run: |
cd era-compiler-tester
cargo run --release --bin compiler-tester -- -v --path='tests/vyper/' --mode='M*B* 0.3.8'
cd ..

0 comments on commit 36ce65e

Please sign in to comment.