Skip to content

Commit

Permalink
Forgotten o1vm CI changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
shimkiv committed Oct 20, 2024
1 parent 524c24c commit b99e320
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/o1vm-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:

env:
# https://doc.rust-lang.org/cargo/reference/profiles.html#release
RUSTFLAGS: -Coverflow-checks=y -Cdebug-assertions=y
# Disable the RUSTFLAGS for now, as it is causing issues while running the o1vm.
# RUSTFLAGS: -Coverflow-checks=y -Cdebug-assertions=y
# https://doc.rust-lang.org/cargo/reference/profiles.html#incremental
CARGO_INCREMENTAL: 1
# https://nexte.st/book/pre-built-binaries.html#using-nextest-in-github-actions
Expand Down Expand Up @@ -65,6 +66,12 @@ jobs:
- name: Install the Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Build the OP program
run: |
cd o1vm
make -C ./ethereum-optimism/op-program op-program
cd ..
- name: Start the local HTTP server
run: |
python -m http.server 8765 &
Expand All @@ -73,10 +80,9 @@ jobs:
# Tests
#

- name: Build the OP program and execeute o1vm in E2E flavor using cached data
- name: Execute o1vm in E2E flavor using cached data
run: |
eval $(opam env)
cd o1vm
make -C ./ethereum-optimism/op-program op-program
unzip -q -o /tmp/o1vm-e2e-testing-cache.zip -d ./
FILENAME="env-for-latest-l2-block.sh" O1VM_FLAVOR="pickles" STOP_AT="=10000000" ./run-code.sh

0 comments on commit b99e320

Please sign in to comment.