-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/cargo/arbitrator/prover/fuzz/ev…
…m-0.41.1
- Loading branch information
Showing
640 changed files
with
71,306 additions
and
11,738 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ run-name: Arbitrator CI triggered from @${{ github.actor }} of ${{ github.head_r | |
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
enable_tmate: | ||
type: boolean | ||
description: 'Enable tmate' | ||
required: false | ||
default: false | ||
merge_group: | ||
pull_request: | ||
paths: | ||
|
@@ -16,51 +22,65 @@ on: | |
|
||
env: | ||
RUST_BACKTRACE: 1 | ||
RUSTFLAGS: -Dwarnings | ||
# RUSTFLAGS: -Dwarnings # TODO: re-enable after wasmer upgrade | ||
WABT_VERSION: 1.0.32 | ||
|
||
jobs: | ||
coverage: | ||
arbitrator: | ||
name: Run Arbitrator tests | ||
runs-on: ubuntu-8 | ||
steps: | ||
- name: Setup tmate session | ||
uses: mxschmitt/action-tmate@v3 | ||
if: ${{ github.event_name == 'workflow_dispatch' && inputs.enable_tmate }} | ||
with: | ||
detached: true | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install Ubuntu dependencies | ||
run: | | ||
sudo add-apt-repository -y ppa:ethereum/ethereum | ||
sudo apt-get update && sudo apt-get install -y \ | ||
build-essential cmake ethereum lld-14 libudev-dev | ||
build-essential cmake lld-14 libudev-dev | ||
sudo ln -s /usr/bin/wasm-ld-14 /usr/local/bin/wasm-ld | ||
- name: Install go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.20.x | ||
go-version: 1.21.x | ||
|
||
- name: Install custom go-ethereum | ||
run: | | ||
cd /tmp | ||
git clone --branch v1.13.8 --depth 1 https://github.com/ethereum/go-ethereum.git | ||
cd go-ethereum | ||
# Enable KZG point evaluation precompile early | ||
sed -i 's#var PrecompiledContractsBerlin = map\[common.Address\]PrecompiledContract{#\0 common.BytesToAddress([]byte{0x0a}): \&kzgPointEvaluation{},#g' core/vm/contracts.go | ||
go build -o /usr/local/bin/geth ./cmd/geth | ||
- name: Setup nodejs | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
node-version: '18' | ||
cache: 'yarn' | ||
cache-dependency-path: '**/yarn.lock' | ||
|
||
- name: Install rust stable | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: "1.76" | ||
components: 'llvm-tools-preview, rustfmt, clippy' | ||
targets: 'wasm32-wasi, wasm32-unknown-unknown' | ||
|
||
- name: Install grcov | ||
uses: jaxxstorm/[email protected] | ||
- name: Install rust nightly | ||
uses: dtolnay/rust-toolchain@nightly | ||
id: install-rust-nightly | ||
with: | ||
repo: mozilla/grcov | ||
tag: v0.8.18 | ||
extension: "\\.bz2" | ||
cache: enable | ||
toolchain: "nightly-2024-02-04" | ||
targets: 'wasm32-wasi, wasm32-unknown-unknown' | ||
components: 'rust-src, rustfmt, clippy' | ||
|
||
- name: Cache Rust intermediate build products | ||
uses: actions/cache@v3 | ||
|
@@ -96,6 +116,9 @@ jobs: | |
make -j | ||
make install | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
|
||
- name: Cache cbrotli | ||
uses: actions/cache@v3 | ||
id: cache-cbrotli | ||
|
@@ -133,39 +156,32 @@ jobs: | |
run: echo "$HOME/wabt-prefix/bin" >> "$GITHUB_PATH" | ||
|
||
- name: Make arbitrator libraries | ||
run: make -j wasm-ci-build | ||
|
||
- name: Enable rust instrumentation | ||
run: | | ||
echo LLVM_PROFILE_FILE="your_name-%p-%m.profraw" >> $GITHUB_ENV | ||
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV | ||
echo RUSTFLAGS="-Cinstrument-coverage" >> $GITHUB_ENV | ||
echo RUSTDOCFLAGS="-Cpanic=abort" >> $GITHUB_ENV | ||
run: make -j wasm-ci-build STYLUS_NIGHTLY_VER="+nightly-2024-02-04" | ||
|
||
- name: Clippy check | ||
run: cargo clippy --all --manifest-path arbitrator/Cargo.toml -- -D warnings | ||
|
||
- name: Run rust tests | ||
run: cargo test --all --manifest-path arbitrator/Cargo.toml | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: -p arbutil -p prover -p jit -p stylus --release --manifest-path arbitrator/prover/Cargo.toml | ||
|
||
- name: Rustfmt | ||
run: cargo fmt --all --manifest-path arbitrator/Cargo.toml -- --check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: -p arbutil -p prover -p jit -p stylus --manifest-path arbitrator/Cargo.toml -- --check | ||
|
||
- name: Rustfmt - langs/rust | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: --all --manifest-path arbitrator/langs/rust/Cargo.toml -- --check | ||
|
||
- name: Make proofs from test cases | ||
run: make -j test-gen-proofs | ||
|
||
- name: Create code-coverage files | ||
run: | | ||
grcov . --binary-path arbitrator/target/release/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info | ||
- name: Upload to codecov.io | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./lcov.info | ||
fail_ci_if_error: true | ||
verbose: false | ||
|
||
- name: Start geth server | ||
run: | | ||
geth --dev --http --http.port 8545 & | ||
|
@@ -177,4 +193,5 @@ jobs: | |
cd contracts | ||
yarn install | ||
yarn build | ||
yarn build:forge:yul | ||
yarn hardhat --network localhost test test/prover/*.ts |
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
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
Oops, something went wrong.